Skip to content

Commit b1fb5cf

Browse files
committed
update
1 parent bc59eb1 commit b1fb5cf

1 file changed

Lines changed: 8 additions & 18 deletions

File tree

articles/azure-app-configuration/concept-enable-rbac.md

Lines changed: 8 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ When using Entra ID and the following Azure App Configuration libraries in cloud
6767
### [.NET](#tab/dotnet)
6868
#### .NET configuration provider
6969

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)))) method if 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.
7171
- `Microsoft.Extensions.Configuration.AzureAppConfiguration`
7272
- `Microsoft.Azure.AppConfiguration.AspNetCore`
7373
- `Microsoft.Azure.AppConfiguration.Functions.Worker`
@@ -88,7 +88,7 @@ builder.AddAzureAppConfiguration(o =>
8888

8989
#### Azure SDK for .NET
9090

91-
Audience is configured by utilizing the following API calls if 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.
9292

9393
* 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))
9494
* 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(
108108
### [Java](#tab/java)
109109
#### Spring configuration provider
110110

111-
**Package**: spring-cloud-azure-appconfiguration-config >= 5.22.0
112-
113-
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.
114112

115113
The following code snippet demonstrates how to add the Azure App Configuration provider into a Spring Boot application with a cloud-specific audience.
116114

@@ -157,9 +155,7 @@ public class Application {
157155

158156
#### Azure SDK for Java
159157

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.
163159

164160
The following code snippet demonstrates how to instantiate a configuration client with a cloud-specific audience.
165161

@@ -174,9 +170,7 @@ ConfigurationClient configurationClient = new ConfigurationClientBuilder()
174170
### [JavaScript](#tab/javascript)
175171
#### JavaScript configuration provider
176172

177-
**Package**: @azure/app-configuration-provider >= 1.0.0
178-
179-
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.
180174

181175
The following code snippet demonstrates how to load Azure App Configuration in a JavaScript application with a cloud-specific audience.
182176

@@ -192,7 +186,7 @@ const appConfig = await load(myStoreEndpoint, credential, {
192186

193187
**Package**: @azure/app-configuration >= 1.9.0
194188

195-
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.
196190

197191
The following code snippet demonstrates how to instantiate a configuration client with a cloud-specific audience.
198192

@@ -215,9 +209,7 @@ import (
215209

216210
#### Go configuration provider
217211

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.
221213

222214
The following code snippet demonstrates how to load Azure App Configuration in a Go application with a cloud-specific audience.
223215

@@ -250,9 +242,7 @@ appConfig, _ := azureappconfiguration.Load(context.Background(), authOptions, op
250242

251243
#### Azure SDK for Go
252244

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.
256246

257247
The following code snippet demonstrates how to instantiate a configuration client with a cloud-specific audience.
258248

0 commit comments

Comments
 (0)