You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-app-configuration/reference-kubernetes-provider.md
+19-2Lines changed: 19 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,11 +16,12 @@ The following reference outlines the properties supported by the Azure App Confi
16
16
17
17
## Properties
18
18
19
-
An `AzureAppConfigurationProvider` resource has the following top-level child properties under the `spec`.
19
+
An `AzureAppConfigurationProvider` resource has the following top-level child properties under the `spec`. Either `endpoint` or `connectionStringReference` has to be specified.
20
20
21
21
|Name|Description|Required|Type|
22
22
|---|---|---|---|
23
-
|endpoint|The endpoint of Azure App Configuration, which you would like to retrieve the key-values from|true|string|
23
+
|endpoint|The endpoint of Azure App Configuration, which you would like to retrieve the key-values from|alternative|string|
24
+
|connectionStringReference|The name of the Kubernetes Secret that contains Azure App Configuration connection string|alternative|string|
24
25
|target|The destination of the retrieved key-values in Kubernetes|true|object|
25
26
|auth|The authentication method to access Azure App Configuration|false|object|
26
27
|keyValues|The settings for querying and processing key-values|false|object|
@@ -158,6 +159,22 @@ The `spec.keyValues.refresh.monitoring.keyValues` is an array of objects, which
1. Create a Kubernetes Secret in the same namespace as the `AzureAppConfigurationProvider` resource and add Azure App Configuration connection string with key *azure_app_configuration_connection_string* in the Secret.
165
+
2. Set the `spec.connectionStringReference` property to the name of the Secret in the following sample `AzureAppConfigurationProvider` resource and deploy it to the Kubernetes cluster.
0 commit comments