We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfff722 commit 8834504Copy full SHA for 8834504
1 file changed
core/clients/key_flow.go
@@ -27,9 +27,8 @@ const (
27
PrivateKeyPath = "STACKIT_PRIVATE_KEY_PATH"
28
)
29
30
-var tokenAPI = "https://api.stackit.cloud/service-account/token" //nolint:gosec // linter false positive
31
-
32
-var jwksAPI = "https://api.stackit.cloud/service-account/.well-known/jwks.json"
+var tokenAPI = "https://service-account.api.stackit.cloud/token" //nolint:gosec // linter false positive
+var jwksAPI = "https://service-account.api.stackit.cloud/.well-known/jwks.json"
33
34
// KeyFlow handles auth with SA key
35
type KeyFlow struct {
0 commit comments