Skip to content

Commit 54f6d21

Browse files
committed
update
1 parent b1fb5cf commit 54f6d21

1 file changed

Lines changed: 11 additions & 9 deletions

File tree

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

Lines changed: 11 additions & 9 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 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.
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. Use version **8.2.0** or later of any of the following packages to configure the audience.
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 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.
91+
Audience can be configured by utilizing the following API calls. Use version **1.6.0** or later of the package `Azure.Data.AppConfiguration` to configure the audience.
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,7 +108,9 @@ var configurationClient = new ConfigurationClient(
108108
### [Java](#tab/java)
109109
#### Spring configuration provider
110110

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.
111+
Audience can be configured by customizing the `ConfigurationClientBuilder` through the `ConfigurationClientCustomizer` interface, then adding it to the bootstrap registry. Use version **5.22.0** or later of the following packages to configure the audience.
112+
- `spring-cloud-azure-appconfiguration-config`
113+
- `spring-cloud-azure-appconfiguration-config-web`
112114

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

@@ -155,7 +157,7 @@ public class Application {
155157

156158
#### Azure SDK for Java
157159

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.
160+
Audience can be configured by passing the `audience` option to the `ConfigurationClientBuilder` when building a `ConfigurationClient`. Use version **1.8.0** or later of the package `azure-data-appconfiguration` to configure the audience.
159161

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

@@ -170,7 +172,7 @@ ConfigurationClient configurationClient = new ConfigurationClientBuilder()
170172
### [JavaScript](#tab/javascript)
171173
#### JavaScript configuration provider
172174

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.
175+
Audience can be configured by passing the `clientOptions` with the `audience` property to the `load` function. Use version **1.0.0** or later of the package `@azure/app-configuration-provider` to configure the audience.
174176

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

@@ -186,7 +188,7 @@ const appConfig = await load(myStoreEndpoint, credential, {
186188

187189
**Package**: @azure/app-configuration >= 1.9.0
188190

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.
191+
Audience can be configured by passing the `audience` option to the `AppConfigurationClient` constructor. Use version **1.9.0** or later of the package `@azure/app-configuration` to configure the audience.
190192

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

@@ -198,7 +200,7 @@ const client = new AppConfigurationClient(myStoreEndpoint, new DefaultAzureCrede
198200

199201
### [Go](#tab/go)
200202

201-
You need to import the following packages:
203+
To customize Entra ID audience, import the following packages in your Go application:
202204

203205
```golang
204206
import (
@@ -209,7 +211,7 @@ import (
209211

210212
#### Go configuration provider
211213

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.
214+
Audience can be configured by passing the `ClientOptions` with the cloud configuration to the `Load` function. Use version **1.0.0** or later of the package `azureappconfiguration` to configure the audience.
213215

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

@@ -242,7 +244,7 @@ appConfig, _ := azureappconfiguration.Load(context.Background(), authOptions, op
242244

243245
#### Azure SDK for Go
244246

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.
247+
Audience can be configured by utilizing the cloud configuration. Use version **2.1.0** or later of the package `azappconfig` to configure the audience.
246248

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

0 commit comments

Comments
 (0)