Skip to content

Commit 208713d

Browse files
committed
Add the serviceAccountBaseUrl option into the readme
1 parent 12cb633 commit 208713d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

internal/resolver/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ type defaultConfigProvider struct {
2121
type 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

0 commit comments

Comments
 (0)