280 questions
0
votes
1
answer
60
views
How do i access values in AAzure app config service from my app service?
I have an app service , there is an env variable named AccessServer with a value
https://test1.com
Now i have created an app configuration and put a value in there via Configuration Explorer as
...
0
votes
1
answer
101
views
App Config VS Config Server for Spring Boot Service on Azure Kubernetes Service
We're currently using Spring Cloud Config Server hosted on-premise to manage configuration for our Spring Boot microservices. It has worked well for us, especially with Git-based versioning and Spring-...
0
votes
1
answer
100
views
Azure App Configuration Services with Key that is an Array pointer
I am trying to store my Azure AD configuration in Azure App Configuration. For reference, and to make sure I'm not encountering an issue that was fixed in a later edition the code that is loading ...
0
votes
2
answers
580
views
Azure Function Servicebus Queue Trigger Parameters From Azure App Configuration Service
I'm trying to get my Function App Servicebus Queue Trigger to be used with the parameters for queue name and connection string fetched from App configuration Service in Azure.
My setup works for ...
1
vote
1
answer
122
views
App Registration error AADSTS500011 show tenant is as domain instead of long string provided
I've tried numerous times to register an app and connect to in in python:
app_id = '670...'
tenant_id = '065...'
client_secret_value = 'YJr...'
import requests
import msal
authority = f'https://...
0
votes
1
answer
76
views
How to unit test my startup file which interacts with AzureConfig?
I am using AzureAppConfig provider for my ASP.NET Core web app.
Here's my startup.cs looks like
MyType obj = new();
var section = GlobalConfiguration.Configuration.GetSection("MySect");
...
1
vote
1
answer
154
views
Syncing Values On-Demand with Azure App Configuration Kubernetes Provider When spec.configuration.refresh is Disabled
I have set spec.configuration.refresh to false in the Azure App Configuration Kubernetes Provider configuration. Could you provide guidance on how to manually sync the values whenever needed?
I have ...
0
votes
1
answer
174
views
How to apply Azure App Configuration only when both labels match?
I have a production environment located in the westus region. I want to set a configuration that only applies when both the prod environment and the westus region are matched.
Currently, the label ...
0
votes
1
answer
82
views
Issue with Azure Function App QueueTrigger and AzureAppConfiguration Integration
I am currently working with an Azure Function App and several microservices that utilize Azure App Configuration. My goal is to use Azure App Configuration as a single source of configuration across ...
1
vote
3
answers
847
views
Access Denied using Azure App Configuration Task in DevOps Pipeline
I am trying to use the DevOps Azure App Configuration task and I keep getting the error message "Access Denied".
I have triple checked and the Service Principal has both;
Admin level "...
0
votes
1
answer
138
views
How can I retrieve the KeyVault URIs from Azure AppConfig in C# without retrieving the Secret Value?
I'm trying to retrieve the Values of an Azure App Config instance which includes KeyVault Reference values.
In my instances, I want to be able to tell which of the values are secured in KeyVault, and ...
1
vote
2
answers
1k
views
Is it possible to populate the secrets of an Azure Container App with values from AppConfiguration?
I'm using Terraform to create the infrastructure for an Azure Container Apps based project.
I have set up Azure Key Vault and AppConfiguration with a combination of config items that reference Key ...
0
votes
1
answer
392
views
Multiple Azure keyvaults linked to same App configuration lead to auth error in spring boot app
My configuration is the following:
An Azure app configuration contains linked keyvalue references to 2 different keyvaults,
each is linked to a section with a different prefix.
A spring boot ...
1
vote
1
answer
426
views
Restart Pods when config map values are updated. I am using Azure App Configuration Provider
We are currently using Azure App Configuration Service along with the Azure App Configuration Kubernetes Provider to fetch app configs/create config maps/mount volume with a file containing configs.
...
0
votes
1
answer
145
views
Switch between static and dynamic Azure App Configuration service
Our Spring Java application should use Azure App Configuration service to manage feature flags.
The problem is that there is no way to run App Configuration service locally through Docker like other ...
0
votes
1
answer
485
views
Step by step process / How to Read Azure app Configurations keys in Data bricks Notebooks
In Azure Data bricks notebook, I Have a scenario to filter records/result set based on list of values. This filter may change in the future. Since it can change in the future, I want to configure this ...
0
votes
1
answer
613
views
Create/Update Azure App config through .NET 7 C# controller
I am trying to create (update if exists) Azure App Config values through .NET 7 C# controller.
The goal is basically send a key-value pair as json through my controller and let my backend process save ...
-1
votes
1
answer
517
views
React app deployment issue on Azure App Service
I have a React app deployed on Azure App Service. Package.json file is in the client folder. When I run the app, I'm getting these app logs and I get a timeout after 1800 seconds.
2024-01-23T09:24:39....
3
votes
1
answer
597
views
Azure App Configuration references are not resolved in local.settings.json
I'm trying to use Azure App Configuration in combination with a Service Bus trigger in an isolated Function App (.NET 8). As per this suggestion I've tried to reference the App Configuration value as ...
1
vote
2
answers
139
views
When I am running Azure CLI cmds through a C# console, an error is encountered stating: "ERROR: Filter parameter value must be a JSON escaped string."
When attempting to run Azure CLI commands through a C# console application, an error is encountered stating: "ERROR: Filter parameter value must be a JSON escaped string."
Below is the C# ...
1
vote
1
answer
849
views
How to run Azure CLI command line application in C# web application
How to run Below azure cli command/Script using C# code in Web application
Below code is in featuremanager.cli file
endpoint=<<EndPoint>>
featurename=<<FeatureName>>
jsondata=$(...
1
vote
2
answers
480
views
Terraform iterating a json file for key value pairs
I have an appconfig.json file which contains the key value details for the azure app config. sample appConfig.json :
[
{
"contentType": "",
"key": &...
0
votes
1
answer
125
views
Azure CLI: Troubleshooting Issues with Variables in Commands – Unexpected Behavior
I'm trying to extract information from a text file and store the content in a variable using the Azure CLI command below.
file_content=$(cat /home/diwakar/cli.txt)
echo $file_content
After running ...
2
votes
1
answer
1k
views
Why does Azure functions (isolated worker) fail indexing? CosmosDbTrigger binding using Azure App Configuration fails with does not resolve to a value
I am trying to source configuration from Azure App Configuration and use the values in my CosmosDbTrigger parameters. I am using the isolated worker, migrating from in-process. This used to work but ...
2
votes
1
answer
450
views
Getting error when creating app configuration key with dynamic block in for_each
I need to create Azure App Configurations with using Terraform. In Terraform documentation, it gives the structure to create is:
In my problem, I have configurations in this schema as a sample data:
...