281 questions
0
votes
0
answers
79
views
Unable to assign Sites.Selected write access to a single sharepoint site: How to restrict n8n to use only one sharepoint site?
I’m trying to configure restricted SharePoint access for an automation workflow (n8n chatbot). My goal is to allow an Azure App Registration to access ONE SharePoint site only using Sites.Selected ...
-1
votes
1
answer
63
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
76
views
Azure App Configuration with AKS refresher burns quota fast
I have an AKS, Azure App Configuration (AAC) and a Key Vault in my Azure cloud.
I have in AAC some environment variables like BgTaskTimer = 10, and in Key Vault DbConnectionString which is added as ...
0
votes
1
answer
119
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-...
-1
votes
1
answer
97
views
ArgumentNullException in MySql HealthCheck before building Asp.Net Core application
I have a dotnet 8 asp core application and I'm trying to add a HealthCheck for my Azure Database using AspNetCore.HealthChecks.MySql nuget and retreiving connection string from Azure App Configuration ...
0
votes
1
answer
106
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
1
answer
180
views
How to enable logging and speed up startup time for Azure App Configuration?
I'm using Azure App Configuration in my .NET application to load configuration settings at startup. However, I've encountered two issues that I'd like help with:
When the app starts, it takes about ...
0
votes
2
answers
638
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 ...
2
votes
1
answer
105
views
How to load secrets.json for the Local environment instead of Development in ASP.NET Core?
We're using Azure App Configuration and Azure Key Vault to load configurations from. There used to 4 environments: Development, QA, Staging, Production, but now we also have the Local environment. ...
1
vote
1
answer
125
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://...
1
vote
1
answer
591
views
ServiceBus, Managed ID, Azure Functions and App Configuration not working together
So I have a solution which is using App Configuration and Managed Identity.
A function app is linked to ServiceBus as a trigger, to use managed identity it needs a configuration parameter called ...
0
votes
1
answer
80
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");
...
0
votes
0
answers
166
views
Azure Function Lifecycle and Configuration Best Practice
I'm trying to understand the best practices around reading configuration used by an Azure Function. Currently I can't find any detailed Microsoft documentation.
Scenario
I have an Azure Function using ...
1
vote
1
answer
164
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
50
views
Can a REST API which is not brought behind APIM, have its configuration stored in Azure App Configuration?
Given that I have a project structure where I have an angular application which talks to REST API which talks to Azure Function Apps which talks to COSMOS and GREMLIN databases to get the data. The ...