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/concept-enable-rbac.md
+8-18Lines changed: 8 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,7 +67,7 @@ When using Entra ID and the following Azure App Configuration libraries in cloud
67
67
### [.NET](#tab/dotnet)
68
68
#### .NET configuration provider
69
69
70
-
Audience is configured by utilizing the [ConfigureClientOptions](/dotnet/api/microsoft.extensions.configuration.azureappconfiguration.azureappconfigurationoptions.configureclientoptions#microsoft-extensions-configuration-azureappconfiguration-azureappconfigurationoptions-configureclientoptions(system-action((azure-data-appconfiguration-configurationclientoptions)))) methodif you use version **8.2.0** or later of any of the following packages.
70
+
Audience can be configured by utilizing the [ConfigureClientOptions](/dotnet/api/microsoft.extensions.configuration.azureappconfiguration.azureappconfigurationoptions.configureclientoptions#microsoft-extensions-configuration-azureappconfiguration-azureappconfigurationoptions-configureclientoptions(system-action((azure-data-appconfiguration-configurationclientoptions)))) method. The audience must be configured if you are using version **8.2.0** or later of any of the following packages in a cloud other than the aforementioned clouds.
Audience is configured by utilizing the following API callsif you use version **1.6.0** or later of the package `Azure.Data.AppConfiguration`:
91
+
Audience can be configured by utilizing the following API calls. The audience must be configured if you are using version **1.6.0** or later of the package `Azure.Data.AppConfiguration` in a cloud other than the aforementioned clouds.
92
92
93
93
* The ConfigurationClient constructor [accepts ConfigurationClientOptions](/dotnet/api/azure.data.appconfiguration.configurationclient.-ctor#azure-data-appconfiguration-configurationclient-ctor(system-uri-azure-core-tokencredential-azure-data-appconfiguration-configurationclientoptions))
94
94
* ConfigurationClientOptions allows [Audience](/dotnet/api/azure.data.appconfiguration.configurationclientoptions.audience#azure-data-appconfiguration-configurationclientoptions-audience) to be set
@@ -108,9 +108,7 @@ var configurationClient = new ConfigurationClient(
In the **Spring configuration provider**, audience is configured by customizing the `ConfigurationClientBuilder` through the `ConfigurationClientCustomizer` interface, then adding it to the bootstrap registry.
111
+
Audience can be configured by customizing the `ConfigurationClientBuilder` through the `ConfigurationClientCustomizer` interface, then adding it to the bootstrap registry. The audience must be configured if you are using version **5.22.0** or later of the package `spring-cloud-azure-appconfiguration-config` in a cloud other than the aforementioned clouds.
114
112
115
113
The following code snippet demonstrates how to add the Azure App Configuration provider into a Spring Boot application with a cloud-specific audience.
116
114
@@ -157,9 +155,7 @@ public class Application {
157
155
158
156
#### Azure SDK for Java
159
157
160
-
**Package**: azure-data-appconfiguration >= 1.8.0
161
-
162
-
In the **Azure SDK for Java**, audience is configured by passing the `audience` option to the `ConfigurationClientBuilder` when building a `ConfigurationClient`.
158
+
Audience can be configured by passing the `audience` option to the `ConfigurationClientBuilder` when building a `ConfigurationClient`. The audience must be configured if you are using version **1.8.0** or later of the package `azure-data-appconfiguration` in a cloud other than the aforementioned clouds.
163
159
164
160
The following code snippet demonstrates how to instantiate a configuration client with a cloud-specific audience.
165
161
@@ -174,9 +170,7 @@ ConfigurationClient configurationClient = new ConfigurationClientBuilder()
In the **JavaScript configuration provider**, audience is configured by passing the `clientOptions` with the `audience` property to the `load` function.
173
+
Audience can be configured by passing the `clientOptions` with the `audience` property to the `load` function. The audience must be configured if you are using version **1.0.0** or later of the package `@azure/app-configuration-provider` in a cloud other than the aforementioned clouds.
180
174
181
175
The following code snippet demonstrates how to load Azure App Configuration in a JavaScript application with a cloud-specific audience.
In the **Azure SDK for JavaScript**, audience is configured by passing the `audience` option to the `AppConfigurationClient` constructor.
189
+
Audience can be configured by passing the `audience` option to the `AppConfigurationClient` constructor. The audience must be configured if you are using version **1.9.0** or later of the package `@azure/app-configuration` in a cloud other than the aforementioned clouds.
196
190
197
191
The following code snippet demonstrates how to instantiate a configuration client with a cloud-specific audience.
198
192
@@ -215,9 +209,7 @@ import (
215
209
216
210
#### Go configuration provider
217
211
218
-
**Package**: azureappconfiguration >= 1.0.0
219
-
220
-
In the **Go configuration provider**, audience is configured by passing the `ClientOptions` with the cloud configuration to the `Load` function.
212
+
Audience can be configured by passing the `ClientOptions` with the cloud configuration to the `Load` function. The audience must be configured if you are using version **1.0.0** or later of the package `azureappconfiguration` in a cloud other than the aforementioned clouds.
221
213
222
214
The following code snippet demonstrates how to load Azure App Configuration in a Go application with a cloud-specific audience.
223
215
@@ -250,9 +242,7 @@ appConfig, _ := azureappconfiguration.Load(context.Background(), authOptions, op
250
242
251
243
#### Azure SDK for Go
252
244
253
-
**Package**: azappconfig >= 2.1.0
254
-
255
-
In the **Azure SDK for Go**, audience is configured by utilizing the cloud configuration.
245
+
Audience can be configured by utilizing the cloud configuration. The audience must be configured if you are using version **2.1.0** or later of the package `azappconfig` in a cloud other than the aforementioned clouds.
256
246
257
247
The following code snippet demonstrates how to instantiate a configuration client with a cloud-specific audience.
0 commit comments