File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -185,6 +185,7 @@ spec:
185185 authTokenSecretKey: string
186186 authTokenSecretNamespace: string
187187 serviceAccountKeyPath: string
188+ serviceAccountBaseUrl: string
188189 acmeTxtRecordTTL: int64
189190` ` `
190191
@@ -195,6 +196,7 @@ spec:
195196- authTokenSecretKey: The key within the secret containing the STACKIT authentication token. (Default: auth-token)
196197- authTokenSecretNamespace: The namespace of the secret containing the STACKIT authentication token. (Default: cert-manager)
197198- serviceAccountKeyPath: The path to the service account key file. The file must be mounted into the container.
199+ - serviceAccountBaseUrl: The base URL for the STACKIT service account API. (Default: https://service-account.api.stackit.cloud/token)
198200- acmeTxtRecordTTL: The TTL for the ACME TXT record. (Default: 600)
199201
200202# # Test Procedures
Original file line number Diff line number Diff line change @@ -21,11 +21,11 @@ type defaultConfigProvider struct {
2121type StackitDnsProviderConfig struct {
2222 ProjectId string `json:"projectId"`
2323 ApiBasePath string `json:"apiBasePath"`
24- ServiceAccountBaseUrl string `json:"serviceAccountBaseUrl"`
2524 AuthTokenSecretRef string `json:"authTokenSecretRef"`
2625 AuthTokenSecretKey string `json:"authTokenSecretKey"`
2726 AuthTokenSecretNamespace string `json:"authTokenSecretNamespace"`
2827 ServiceAccountKeyPath string `json:"serviceAccountKeyPath"`
28+ ServiceAccountBaseUrl string `json:"serviceAccountBaseUrl"`
2929 AcmeTxtRecordTTL int64 `json:"acmeTxtRecordTTL"`
3030}
3131
You can’t perform that action at this time.
0 commit comments