What is azure app configuration?
What does app configuration provide?
What scenarios does app config make it easier to implement?
What are keys in relation to app config?
What are key labels in terms of app config?
How do we app config for data?
What are values in terms of app config?
What is a feature flag?
What is feature manager in terms of app config?
What is a filter in terms of app config?
What does effective implementation of feature management consist of?
How do filters work with feature flags to determine state?
How does feature managee support appsettings.json?
“FeatureManagement”: {
“FeatureA”: true,
“FeatureB”: false,
“FeatureC”:{
“EnabledFor”:[
“Name”: “Percentage”
“Parameters”:{
“Value”: 50
}
]
}}
How does app config encrypt sensitive info?
What is required to successfully enable the customer managed key capability for app config?
How can we use private endpoints with app config?
What do private endpoints enable us to do?
Command to add system assigned ID to app config?
az appconfig identity assign –name configStoreName –resource-group RGName
Command to add user assigned ID to app config?
az identity create –resource-group myRG –name myuserassignedidentity
az appconfig identity assign –name myConfigStore –resource-group MyRG –identities <ID_NAME></ID_NAME>