Questions tagged [azure-configuration]
144 questions
2
votes
0 answers
Is there a way to get my Azure Function Trigger bindings to not binding to settings in the "Values" config section?
For example suppose I have this local.settings.json file:
{
"IsEncrypted": false,
"Values": {
"FUNCTIONS_WORKER_RUNTIME": "dotnet-isolated"
},
"Kafka": {
"BootstrapServers": "localhost:9092"
}
}
And then I want my function to bind…

justin.m.chase
- 13,061
- 8
- 52
- 100
2
votes
1 answer
Terraform apply error 'The number of path segments is not divisible by 2' for Azure App Feature Flag
Terraform apply error 'The number of path segments is not divisible by 2' for Azure App Feature Flag
Why am I seeing this error? Hard to find any answer to this anywhere. I am using Terraform v2.93.0
and I also tried 2.90.0 and 2.56.0, and got the…

djangofan
- 28,471
- 61
- 196
- 289
2
votes
4 answers
How is Azure Diagnostics storage account configured?
Reading MSDN I got an impression that the account used for storing Azure Diagnostics is configured like this:

sharptooth
- 167,383
- 100
- 513
- 979
2
votes
1 answer
Windows Azure - Deploying to subset of instances within a role
I'm looking to implement continuous deployment, pretty much as a proof of concept using Windows Azure, deploying the packages and switching staging <-> production is all fine, however, I would like to add some smarts to the way it is…

Rosstified
- 4,047
- 2
- 25
- 33
2
votes
3 answers
How configure Azure function project in Intellij/Pycharm run/debug configurations on mac
How to configure Azure function project in Intellij/Pycharm run/debug configurations on Mac because I've tried to set it by my own but it doesnt work.
I would like to replace shell command: func start with run config
The image below from…

Alexey Nikonov
- 4,958
- 5
- 39
- 66
2
votes
1 answer
How to set environment variable in Azure for a App service
I have a .net Framework Web App running in Azure.
In my code I have a line that gets an environment variable:
var x = System.Environment.GetEnvironmentVariable("MY_Setting_Name");
How do I set/view this setting in the Azure portal? is it the same…

Ayo Adesina
- 2,231
- 3
- 37
- 71
2
votes
5 answers
How to update Azure App Configuration Settings using Code (.Net Core)
I have an Azure app registered on Azure portal which is created in .NET Core 2.0 This app reads some config value from the Application settings section from the portal as shown in below image.
Now at some stage I want to update those config value…

prog1011
- 3,425
- 3
- 30
- 57
2
votes
1 answer
Get ServiceDefinition.csdef from an Azure instance
I need to get the original endpoint configurations from the .csdef file, how can I do it?
I cannot use RoleEnvironment.CurrentRoleInstance.InstanceEndpoints, because it gives me the internal/local port in the virtual IP. But I need to know which is…

vtortola
- 34,709
- 29
- 161
- 263
2
votes
3 answers
Azure Queue Trigger Function - Local Integration
I am creating a simple queue triggered azure function using Visual Studio. I am connecting it with my storage account, but for some reason its not working. Any help is appreciated.
This is my code: (auto-generated by…

ArslanIqbal
- 569
- 1
- 6
- 19
2
votes
0 answers
Azure App Service Connection string settings not available custom Session provider
I added all my connection strings to the App Service -> Settings screen.
I'm using Redis to share Sessions between the different instances. Everything is good if I have the connection in the ConnectionString section in the web.config but if I…

marto
- 4,170
- 1
- 28
- 39
2
votes
2 answers
ASP.NET Core (Latest) - appsettings.json ConnectionString not overriding on Azure
I'm playing around with a small ASP.NET Core 1.1 app which I have published. Now I'm following the documentation with regards to using appsettings*.json and environment variables. So I have the…

garfbradaz
- 3,424
- 7
- 43
- 70
2
votes
1 answer
Different credentials in Azure publish profile
Let's say I just want to upload a simple index.html file on my Azure web site (called "test").
To do this, I set my deployment credentials.
For example, username: frog
password: froggy
I am able to use these credentials to upload the…

padawanTony
- 1,348
- 2
- 22
- 41
2
votes
1 answer
How to create Azure Input Endpoint to VRRP Virtual IP Address
I'm setting up a test web farm in Azure. Consisting of:
Four Ubuntu Servers
Two balancers running HAProxy + Keepalived
Two web servers running Apache
Keepalived has been configured and everything has been working fine. HAProxy performs great.
My…

ryancdotnet
- 2,015
- 16
- 33
2
votes
2 answers
Azure Compute Service worker becomes "busy" following scale-up
I'm running one service in Azure with 4 worker instances. When I scale up to 5 worker instances the first instance that had started goes into the "busy" state. Why is that? What happens during scale up? Does azure re-run all the startup tasks? I'm…

bjoern
- 1,009
- 3
- 15
- 31
2
votes
1 answer
A single cloud project for each environment?
Previously I have always had separate cloud projects for each environment, like this:
This poses some problems:
Maintaining multiple ServiceDefinition.csdef files
When building to a common output path, which ServiceDefinition.csdef is copied?
I…

Dave New
- 38,496
- 59
- 215
- 394