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
0
votes
1 answer

Error message: The current SKU does not support 'private endpoint connection'

I created a private link for app configuration in Azure cloud. My terraform code: resource "azurerm_virtual_network" "example" { name = "example-network" address_space = ["10.0.0.0/16"] location = var.location …
Thanh Nguyen Van
  • 10,292
  • 6
  • 35
  • 53
0
votes
1 answer

Is it possible to put Azure App Configuration behind Azure Front Door?

Update: more detail can be found in the GitHub issue that i opened here: https://github.com/Azure/AppConfiguration/issues/567#issuecomment-953365024 Original question: I have set up three resource groups, each with their own instance of App…
David Peden
  • 17,596
  • 6
  • 52
  • 72
0
votes
1 answer

How to generate a 'label' using a json file in app configuration service?

I'm trying to import a json file into Azure app configuration service using cli command: az appconfig kv import. Sample json file { "Pss": { "account/getall/get": "read", "account/setall/put": "write", …
Madhu
  • 415
  • 1
  • 4
  • 15
0
votes
1 answer

How to use Azure App Configuration with .Net Framework 4.7.1 MVC app

I want to use an Azure App Configuration store in a .Net Framework MVC web app. I have added references to the Microsoft.Extensions.Configuration.* assemblies. The goal is that my existing code which makes calls to…
betitall
  • 807
  • 2
  • 8
  • 19
0
votes
2 answers

What is the benefit of using the Azure Feature Manager vs regular configuration value of "true" and "false"

From what I've seen here if I have an Azure App Config set up and want to have a feature flag in it, in order to read its value or take advantage of it I must: Install a nuget, separate from the Microsoft.Extensions.Configuration one I already need…
Tessaract
  • 1,047
  • 7
  • 24
0
votes
1 answer

Is it possible to map/rename keys loaded from Azure App Configuration?

I want to use both appsettings.json and Azure App Configuration to provide configuration for my application. Azure App Configuration will be used by several applications and it is going to be handled via prefixes like AppName1:Auth:ApiKey. However,…
Krzysztof Madej
  • 32,704
  • 10
  • 78
  • 107
0
votes
1 answer

angular azure app configuration giving SCRIPT1002: Syntax error in IE11

this is the line in IE11 console vendor.js (65816,1); class AppConfigCredential { constructor(credential, secret) { this.credential = credential; this.secret = secret; } Iam trying read the feature flags from azure appconfiguration from…
Ajay
  • 21
  • 1
  • 8
0
votes
3 answers

Azure App Config HMAC authentication returns Unauthorized error

I'm following this tutorial on making a REST call to Azure App Config to add a key-value entry using HMAC authentication. Both the JS and c# versions don't work - i end up with a 401 Unauthorized error saying HMAC-SHA256 error="invalid_token",…
auburg
  • 1,373
  • 2
  • 12
  • 22
0
votes
1 answer

How to limit the number of requests being made to Azure App Configuration from a Spring Boot application?

I have a Spring Boot app running on an Azure Web App instance and it's set up to fetch external configurations from an App Configuration. I am using the free tier of App Configuration which should be plenty for my needs as my application does not…
0
votes
1 answer

Azure App Configuration Managed Identity failing when called from Azure Function

I'm following Use managed identities to access app configuration. For step 5 i've assigned my function FilterFunction as havingthe App Configuration Data Reader role: The code for my function on startup is the following: var…
0
votes
1 answer

Azure App Config adding JSON through Azure CLI

I've created an Azure App Config and am calling the following to add a key / value pair through an Azure Cloud Shell: az appconfig kv set -n $appConfigName --content-type application/json --key "tenantXYZ:1" --value…
auburg
  • 1,373
  • 2
  • 12
  • 22
0
votes
1 answer

Ignore specific request's headers on Frontend so the requests don't get cached

I'm working with Feature Flags (Azure App Configuration) and on the React side I have followed this guide indicating how to consume the info. However, the responses of the GET requests being made to obtain the features' info are being cached in the…
Merlin
  • 97
  • 7
0
votes
1 answer

Azure function app reading from App Settings not working

I have an Azure Function App that I am attempting to secure with OKTA. In the root of my function app I have an auth.json file and I am replacing the Client Id etc with settings in my App Settings..except they arent replacing. It is keeping the…
Adrian
  • 670
  • 10
  • 24
0
votes
1 answer

Azure App configuration Deploying Event Subscription failed due to "Webhook validation handshake failed"

Hi I am trying to create an event subscription for Azure App Configuration via Portal. Endpoint Type is Webhook. The System Topic gets created successfully, but the Event Subscription Deployment fails due to "Webhook validation handshake failed…
Gauls
  • 1,955
  • 6
  • 28
  • 44
0
votes
1 answer

Azure Function with App Config and managed identity - how to debug locally

I've been all over the place looking for an answer to the question in the title but I have found 0 relevant information on my issue, yes there is examples for other services but nothing for my case. I have an Azure App Function. I enabled it's…