Merge branch 'master' into youngp/lf

This commit is contained in:
Young Bu Park 2020-03-16 15:07:38 -07:00 committed by GitHub
commit fbefa7795f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 0 deletions

View File

@ -37,6 +37,7 @@ When running in self hosted mode, place this file in a `components` directory un
## AWS Secret Manager reference example
This example shows you how to set the Redis password from the AWS Secret Manager secret store.
Here, you created a secret named `redisPassword` in AWS Secret Manager. Note its important to set it both as the `name` and `key` properties.
```yaml
apiVersion: dapr.io/v1alpha1
@ -51,6 +52,7 @@ spec:
- name: redisPassword
secretKeyRef:
name: redisPassword
key: redisPassword
auth:
secretStore: awssecretmanager
```

View File

@ -160,6 +160,7 @@ spec:
- name: redisPassword
secretKeyRef:
name: redisPassword
key: redisPassword
auth:
secretStore: azurekeyvault
```
@ -257,6 +258,7 @@ spec:
- name: redisPassword
secretKeyRef:
name: redisPassword
key: redisPassword
auth:
secretStore: azurekeyvault
```

View File

@ -49,6 +49,7 @@ When running in self hosted mode, place this file in a `components` directory un
## GCP Secret Manager reference example
This example shows you how to take the Redis password from the GCP Secret Manager secret store.
Here, you created a secret named `redisPassword` in GCP Secret Manager. Note its important to set it both as the `name` and `key` properties.
```yaml
apiVersion: dapr.io/v1alpha1
@ -63,6 +64,7 @@ spec:
- name: redisPassword
secretKeyRef:
name: redisPassword
key: redisPassword
auth:
secretStore: gcpsecretmanager
```

View File

@ -61,6 +61,7 @@ spec:
- name: redisPassword
secretKeyRef:
name: redisPassword
key: redisPassword
auth:
secretStore: vault
```