Ritu

Ritu

  • 1.3k
  • 344
  • 37.6k

How to update Azure App Configuration Settings using Code (.Net Core)

Aug 3 2023 8:23 AM

Hi all

I want to update configuration (applicationsettings) in azure function app automatically.

I added all the configuration in local.settings.json

{
  "IsEncrypted": false,
  "Values": {
    "AzureAbc": "AzureAbc",
    "FUNCTIONS_WORKER_RUNTIME": "dotnet",
    "BaseUrl": "some_value",
    "relUrl1": "some_value",
    "relUrl1 "some_value"
}

}

but after publishing function app configuration values are not updated in azure function app configuration.

thanks.


Answers (3)