Azure App Config - reserved keyword in key name allowed via portal but not via bicep/arm deployment #14940
Unanswered
TripleBrass
asked this question in
Q&A
Replies: 1 comment 1 reply
-
You can ask the reason directly to the app configuration team here https://github.com/Azure/AppConfiguration/issues |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey all,
I'm trying to utilize Azure App Config to centralize - well - all of my application configuration. There is something that bothers me, however. When you create a brand .NET 8 API in Visual Studio, one of the things it does is add a log level to the appsettings.json file like so:
I desire to have App Config manage these key values and I perform all deployments of key values with bicep. However, because "Microsoft" is a reserved keyword as per the documentation, trying to deploy a template with a reserved keyword fails. Here is an abbreviated example:
However, I can create this value with the azure portal manually and I can observe this HTTP request while doing so:
PUT
with a body of:
While I can work around this situation by transforming my configuration in code and not directly deploying a reserved keyword, I would like to better understand why I can create this entry in the portal but not via bicep/ARM. Any advice is appreciated.
Beta Was this translation helpful? Give feedback.
All reactions