mirror of
https://github.com/external-secrets/external-secrets.git
synced 2024-12-14 11:57:59 +00:00
Merge pull request #2 from external-secrets/fix/root-provider-spec
fix: root providers under a provider field
This commit is contained in:
commit
04394dfbe3
1 changed files with 19 additions and 16 deletions
35
Spec.md
35
Spec.md
|
@ -222,25 +222,28 @@ spec:
|
||||||
# Optional
|
# Optional
|
||||||
controller: dev
|
controller: dev
|
||||||
|
|
||||||
# AWSSM configures this store to sync secrets using AWS Secret Manager provider
|
# provider field contains the configuration to access the provider which contains the secret
|
||||||
awssm:
|
# exactly one provider must be configured.
|
||||||
# Auth defines the information necessary to authenticate against AWS by
|
provider:
|
||||||
# getting the accessKeyID and secretAccessKey from an already created Kubernetes Secret
|
# AWSSM configures this store to sync secrets using AWS Secret Manager provider
|
||||||
auth:
|
awssm:
|
||||||
secretRef:
|
# Auth defines the information necessary to authenticate against AWS by
|
||||||
accessKeyID:
|
# getting the accessKeyID and secretAccessKey from an already created Kubernetes Secret
|
||||||
name: awssm-secret
|
auth:
|
||||||
key: access-key
|
secretRef:
|
||||||
|
accessKeyID:
|
||||||
|
name: awssm-secret
|
||||||
|
key: access-key
|
||||||
|
|
||||||
secretAccessKey:
|
secretAccessKey:
|
||||||
name: awssm-secret
|
name: awssm-secret
|
||||||
key: secret-access-key
|
key: secret-access-key
|
||||||
|
|
||||||
# Role is a Role ARN which the SecretManager provider will assume
|
# Role is a Role ARN which the SecretManager provider will assume
|
||||||
role: iam-role
|
role: iam-role
|
||||||
|
|
||||||
# AWS Region to be used for the provider
|
# AWS Region to be used for the provider
|
||||||
region: eu-central-1
|
region: eu-central-1
|
||||||
|
|
||||||
status:
|
status:
|
||||||
# * Pending: e.g. referenced secret containing credentials is missing
|
# * Pending: e.g. referenced secret containing credentials is missing
|
||||||
|
|
Loading…
Reference in a new issue