File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
articles/azure-app-configuration Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -451,9 +451,9 @@ Assuming an App Configuration store has these Key Vault references:
451
451
452
452
|key|value|tags|
453
453
|---|---|---|
454
- |app1-secret1|uri1 |`{}`|
455
- |app1-secret2|uri2 |`{}`|
456
- |app1-certificate|uri3 |`{".kubernetes.secret.type" : " kubernetes.io/tls" }`|
454
+ |app1-secret1|<Key Vault reference 1> |`{}`|
455
+ |app1-secret2|<Key Vault reference 2> |`{}`|
456
+ |app1-certificate|<Key Vault reference 3> |`{".kubernetes.secret.type" : " kubernetes.io/tls" }`|
457
457
458
458
The following sample generates Secrets of both Opaque and TLS types.
459
459
@@ -482,18 +482,18 @@ The generated Secrets are populated with the following data:
482
482
name: secret-created-by-appconfig-provider
483
483
type: Opaque
484
484
data:
485
- app1-secret1: value1
486
- app1-secret2: value2
485
+ app1-secret1: <secret value retrieved from Key Vault>
486
+ app1-secret2: <secret value retrieved from Key Vault>
487
487
` ` `
488
488
489
489
` ` ` yaml
490
490
name: app1-certificate
491
491
type: kubernetes.io/tls
492
492
data:
493
493
tls.crt: |
494
- crt data
494
+ <certificate data retrieved from Key Vault>
495
495
tls.key: |
496
- key data
496
+ <certificate key retrieved from Key Vault>
497
497
` ` `
498
498
499
499
# ### Refresh of secrets from Key Vault
You can’t perform that action at this time.
0 commit comments