Skip to content

Commit 221c434

Browse files
authored
Acrolinx fix: AAD (disallowed) > Azure AD
1 parent 44eec25 commit 221c434

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/azure-app-configuration/howto-geo-replication.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,13 @@ Each replica you create has its dedicated endpoint. If your application resides
9090

9191
When geo-replication is enabled, and if one replica isn't accessible, you can let your application failover to another replica for improved resiliency. App Configuration provider libraries have built-in failover support by accepting multiple replica endpoints. You can provide a list of your replica endpoints in the order of the most preferred to the least preferred endpoint. When the current endpoint isn't accessible, the provider library will fail over to a less preferred endpoint, but it will try to connect to the more preferred endpoints from time to time. When a more preferred endpoint becomes available, it will switch to it for future requests.
9292

93-
Assuming you have an application using Azure App Configuration, you can update it as the following sample code to take advantage of the failover feature. You can either provide a list of endpoints for AAD authentication or a list of connection strings for access key-based authentication.
93+
Assuming you have an application using Azure App Configuration, you can update it as the following sample code to take advantage of the failover feature. You can either provide a list of endpoints for Azure Active Directory (Azure AD) authentication or a list of connection strings for access key-based authentication.
9494

9595
### [.NET](#tab/dotnet)
9696

9797
Edit the call to the `AddAzureAppConfiguration` method, which is often found in the `program.cs` file of your application.
9898

99-
**Connect with AAD**
99+
**Connect with Azure AD**
100100

101101
```csharp
102102
configurationBuilder.AddAzureAppConfiguration(options =>
@@ -106,7 +106,7 @@ configurationBuilder.AddAzureAppConfiguration(options =>
106106
new Uri("<first-replica-endpoint>"),
107107
new Uri("<second-replica-endpoint>") };
108108

109-
// Connect to replica endpoints using AAD authentication
109+
// Connect to replica endpoints using Azure AD authentication
110110
options.Connect(endpoints, new DefaultAzureCredential());
111111

112112
// Other changes to options
@@ -140,7 +140,7 @@ configurationBuilder.AddAzureAppConfiguration(options =>
140140

141141
Edit the `endpoints` or `connection-strings` properties in the `bootstrap.properties` file of your application.
142142

143-
**Connect with AAD**
143+
**Connect with Azure AD**
144144

145145
```properties
146146
spring.cloud.azure.appconfiguration.stores[0].endpoints[0]="<first-replica-endpoint>"

0 commit comments

Comments
 (0)