FetchActorTokenFunc is a function type for fetching actor tokens dynamically. This can be used for scenarios where the actor token needs to be fetched at runtime rather than being a static Kubernetes service account token.
func(ctx context.Context) (string, error)
| 22 | // This can be used for scenarios where the actor token needs to be fetched |
| 23 | // at runtime rather than being a static Kubernetes service account token. |
| 24 | type FetchActorTokenFunc func(ctx context.Context) (string, error) |
| 25 | |
| 26 | // STSIntegration provides framework-agnostic STS integration. |
| 27 | // It wires together the STS client, actor token service, and subject token extraction. |
nothing calls this directly
no outgoing calls
no test coverage detected