Questions tagged [azure-app-configuration]

Azure App Configuration provides a service to centrally manage application settings in Azure.

Azure App Configuration provides a service to centrally manage application settings in Azure. Modern programs, especially programs running in a cloud, generally have many components that are distributed in nature. Spreading configuration settings across these components can lead to hard-to-troubleshoot errors during an application deployment. Use App Configuration to store all the settings for your application and secure their accesses in one place.

222 questions
3
votes
1 answer

Why is the Azure App Configuration feature flag not found?

Azure Functions app, runtime v3. The application has a FunctionsStartup class that first enables Azure App Configuration in its ConfigureAppConfiguration method: builder.ConfigurationBuilder.AddAzureAppConfiguration(options => { options …
Michiel van Oosterhout
  • 22,839
  • 15
  • 90
  • 132
3
votes
1 answer

Azure App Configuration Feature Flag with Label is not retrieved by Microsoft.FeatureManagement.FeatureManager

I started using Azure App Configuration service and Feature Flags functionality in my project. The thing that I saw is whenever I define a new feature flag and set some value for the label field then it's not retrieved by the…
GoldenAge
  • 2,918
  • 5
  • 25
  • 63
3
votes
2 answers

Is there a way to get all the features and their booleans from Azure App Configuration?

Using IFeatureManager only has two methods that only allow to get a feature per request. Is there a way to get all the features and their values (true or false)?
3
votes
1 answer

appsettings.json copied, passed or published to Azure App Service configuration?

I have been trying to understand the appsettings.json method of use for some time now as I am building an ASP.NET Core 3.1 API that is to be published to Azure. When I'm publishing the project to my web app my settings don't seem to get copied to…
3
votes
1 answer

Error (Azure Key Vault) is configured for use by Azure Active Directory users only

Full Error: Microsoft.Extensions.Configuration.AzureAppConfiguration.KeyVaultReferenceException: SharedTokenCacheCredential authentication failed: AADSTS9002332: Application 'cfa8b339-82a2-471a-a3c9-0fc0be7a4093'(Azure Key Vault) is configured for…
OpTech Marketing
  • 417
  • 2
  • 6
  • 19
3
votes
5 answers

Get Key Value Pairs from Azure App Configuration with PowerShell

There aren't any cmdlets in the AZ modules to get key-value pairs from Azure app configuration. Are there any other options besides AZ CLI? Is there a way to interact with service from PowerShell?
joshduffney
  • 389
  • 1
  • 4
  • 16
3
votes
1 answer

Use Azure Durable Function TaskHub name set from Azure App Configuration

Is it possible to set the TaskHub name for an Azure Durable Function from a value stored in the Azure App Configuration Service? My host.json file is: { "version": "2.0", "extensions": { "durableTask": { "hubName":…
3
votes
1 answer

how to use Azure App Configuration in Angular

Is it possible to use Azure App config in Angular application? goal is to define Secrets and other strings in Azure App Config and use it in Angular application. All the examples out there are for .Net
Raas Masood
  • 1,475
  • 3
  • 23
  • 61
3
votes
1 answer

How can I use Azure App Configuration service within Azure Function v1 (.NET Framework)

TL;DR: How can I use Managed Service Identities in an Azure Function v1 for configuring via Azure App Configuration? I'm trying to make use of Azure App Configuration from within an Azure Function v1 using .NET Framework. I would ideally like to…
illusio
  • 173
  • 10
3
votes
2 answers

Is it possible to use AzureAppConfiguration together with an Azure Function ServiceBusTrigger

Today I have an Azure Function with the ServiceBusTrigger that reads values from my settings file. Like this: [FunctionName("BookingEventListner")] public static async Task Run([ServiceBusTrigger("%topic_name%", "%subscription_name%", Connection =…
2
votes
1 answer

How to update azure app configuration value from function app?

I have a question that bothers me. Is it possible to modify an app configuration value from a function app in runtime? I made the changes to Startup as per the documentation. public override void…
Ali Hasan
  • 121
  • 8
2
votes
1 answer

Azure App Configuration not loading the keys

I am trying to load some key/value pairs defined in my Azure App Configuration service inside my DotNet 6.0 web application. But it returns nothing [ the call to builder.Configuration.GetSection("Rental:Settings")].Any Idea? Here is the code I am…
Reza Shirazi
  • 359
  • 5
  • 17
2
votes
1 answer

Signed-in user claims missing under Profile page in ASP.NET Core Web App calling the Microsoft Graph

I have one single tenant application with redirect uri and front-channel logout url as https://localhost:44321/signin-oidc I can authenticate to the application but after selecting profile, it is not displaying signed-in user claims instead throwing…
2
votes
1 answer

Isolated azure function with service bus trigger - connection string from azure app configuration

I have some problems in running the azure function (isolated one) based on .net 6. I would like to get the connection string to the service bus from azure app config. All other settings are succesfuly fetched and served with IOptions pattern:…
2
votes
0 answers

HttpResponseError: Operation returned an invalid status 'Forbidden'

I am running a function in Jupyter notebook to test my connection to a Database Here is the code: from azure.identity import DefaultAzureCredential from azure.appconfiguration import AzureAppConfigurationClient from azure.keyvault.secrets import…
1
2
3
14 15