Skip to content

Commit 310eaaf

Browse files
committed
Image update.
1 parent 40091f0 commit 310eaaf

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

articles/azure-app-configuration/concept-feature-management.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ ms.author: alkemper
66
ms.service: azure-app-configuration
77
ms.custom: devx-track-dotnet, devdivchpfy22
88
ms.topic: conceptual
9-
ms.date: 08/09/2022
9+
ms.date: 08/10/2022
1010
---
1111

1212
# Feature management overview
1313

1414
Traditionally, shipping a new application feature requires a complete redeployment of the application itself. Testing a feature often requires multiple deployments of the application. Each deployment might change the feature or expose the feature to different customers for testing.
1515

16-
Feature management is a modern software-development practice that decouples feature release from code deployment and enables quick changes to feature availability on demand. It uses a technique called *feature flags* (also known as *feature toggles*, *feature switches*, and so on) to dynamically administer a feature's lifecycle.
16+
Feature management is a modern software-development practice that decouples feature release from code deployment and enables quick changes to feature availability on demand. It uses a technique called *feature flags* (also known as *feature toggles* and *feature switches*) to dynamically administer a feature's lifecycle.
1717

1818
Feature management helps developers address the following problems:
1919

@@ -46,7 +46,7 @@ if (featureFlag) {
4646
}
4747
```
4848

49-
You can set the value of `featureFlag` statically.
49+
You can set the value of `featureFlag` statically:
5050

5151
```csharp
5252
bool featureFlag = true;
@@ -70,7 +70,7 @@ if (featureFlag) {
7070

7171
## Feature flag repository
7272

73-
To use feature flags effectively, you need to externalize all the feature flags used in an application. This approach allows you to change feature flag states without modifying and redeploying the application itself.
73+
To use feature flags effectively, you need to externalize all the feature flags used in an application. This approach lets you change feature flag states without modifying and redeploying the application itself.
7474

7575
Azure App Configuration provides a centralized repository for feature flags. You can use it to define different kinds of feature flags and manipulate their states quickly and confidently. You can then use the App Configuration libraries for various programming language frameworks to easily access these feature flags from your application.
7676

articles/azure-app-configuration/howto-integrate-azure-managed-service-identity.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.author: alkemper
77
ms.service: azure-app-configuration
88
ms.custom: devx-track-csharp, fasttrack-edit, subject-rbac-steps, devdivchpfy22
99
ms.topic: conceptual
10-
ms.date: 08/09/2022
10+
ms.date: 08/10/2022
1111
zone_pivot_groups: appconfig-provider
1212
---
1313
# Use managed identities to access App Configuration
@@ -88,7 +88,7 @@ The following steps describe how to assign the App Configuration Data Reader rol
8888

8989
If you don't have permissions to assign roles, the **Add role assignment** option will be disabled. For more information, see [Azure built-in roles](../role-based-access-control/built-in-roles.md).
9090

91-
1. On the **Role** tab, select the **App Configuration Data Reader** role.
91+
1. On the **Role** tab, select the **App Configuration Data Reader** role and then select **Next**.
9292

9393
:::image type="content" source="../../includes/role-based-access-control/media/select-role-assignment.png" alt-text="Screenshot showing Add role assignment page with Role tab selected.":::
9494

@@ -98,6 +98,8 @@ The following steps describe how to assign the App Configuration Data Reader rol
9898

9999
1. Select your Azure subscription, for Managed Identity select **App Service**, then select your App Service name.
100100

101+
:::image type="content" source="../../includes/role-based-access-control/media/select-managed-identity-members.png" alt-text="Screenshot showing select managed identities page.":::
102+
101103
1. On the **Review + assign** tab, select **Review + assign** to assign the role.
102104

103105
## Use a managed identity
@@ -214,7 +216,7 @@ Using managed identities requires you to deploy your app to an Azure service. Ma
214216
215217
:::zone target="docs" pivot="framework-spring"
216218
217-
Using managed identities requires you to deploy your app to an Azure service. Managed identities can't be used for authentication of locally running apps. To deploy the Spring app that you created in the [Create a Java Spring app with Azure App Configuration](./quickstart-java-spring-app.md) quickstart and modified to use managed identities, follow the guidance in [Publish your web app](../app-service/quickstart-java.md?tabs=javase&pivots=platform-linux).
219+
Using managed identities requires you to deploy your app to an Azure service. Managed identities can't be used for authentication of locally-running apps. To deploy the Spring app that you created in the [Create a Java Spring app with Azure App Configuration](./quickstart-java-spring-app.md) quickstart and modified to use managed identities, follow the guidance in [Publish your web app](../app-service/quickstart-java.md?tabs=javase&pivots=platform-linux).
218220
219221
:::zone-end
220222
35.4 KB
Loading

0 commit comments

Comments
 (0)