Skip to content

Commit 4238421

Browse files
authored
Merge pull request #95841 from rishiilangomaran/app_config_small_bugs
App config small bugs
2 parents 0d5d439 + 3c717f1 commit 4238421

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

articles/azure-app-configuration/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ App Configuration is currently in public preview. It is free to use during the p
2626

2727
Cloud-based applications often run on multiple virtual machines or containers in multiple regions and use multiple external services. Creating such a distributed application that's robust and scalable is a challenge.
2828

29-
Various programming methodologies help developers deal with the increasing complexity of building applications. For example, the 12-factor app describes many well-tested architectural patterns and best practices for use with cloud applications. One key recommendation from this guide is to separate configuration from code. In this case, an application’s configuration settings should be kept external to its executable and read in from its runtime environment or an external source.
29+
Various programming methodologies help developers deal with the increasing complexity of building applications. For example, the [Twelve-Factor App](https://12factor.net/) describes many well-tested architectural patterns and best practices for use with cloud applications. One key recommendation from this guide is to separate configuration from code. In this case, an application’s configuration settings should be kept external to its executable and read in from its runtime environment or an external source.
3030

3131
While any application can make use of App Configuration, the following examples are the types of application that benefit from the use of it:
3232

articles/azure-app-configuration/quickstart-feature-flag-aspnet-core.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ Add the [Secret Manager tool](https://docs.microsoft.com/aspnet/core/security/ap
127127
var settings = config.Build();
128128
config.AddAzureAppConfiguration(options => {
129129
options.Connect(settings["ConnectionStrings:AppConfig"])
130-
.UseFeatureFlags();
130+
.UseFeatureFlags();
131131
});
132132
})
133133
.UseStartup<Startup>();
@@ -143,10 +143,9 @@ Add the [Secret Manager tool](https://docs.microsoft.com/aspnet/core/security/ap
143143
{
144144
var settings = config.Build();
145145
config.AddAzureAppConfiguration(options => {
146-
options.Connect(settings["ConnectionStrings:AppConfig"])
147-
.UseFeatureFlags();
146+
options.Connect(settings["ConnectionStrings:AppConfig"])
147+
.UseFeatureFlags();
148148
});
149-
150149
})
151150
.UseStartup<Startup>());
152151
```

0 commit comments

Comments
 (0)