You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var appConfiguration = builder.AddAzureAppConfiguration("appc-vrp-dev-ae").WithParameter("sku", "free");
I can confirm that it passes the argument to bicep and compiles it, but throws a warning as the parameter is not used.
So the resource always gets created using the standard sku as it's hard coded in the template on line 17.
All modules that I've checked don't allow the sku to be overriden, the App Configuration one does have the parameter defined, but does not utilise it in the template.
The text was updated successfully, but these errors were encountered:
naillizard
changed the title
Azure App Configuration bicep module not utilising the sku parameter
Bicep modules should allow to override the sku
Nov 27, 2024
aspire/playground/bicep/BicepSample.AppHost/appConfig.module.bicep
Line 17 in 8761d72
trying to override the sku as follows.
I can confirm that it passes the argument to bicep and compiles it, but throws a warning as the parameter is not used.
So the resource always gets created using the
standard
sku as it's hard coded in the template on line 17.All modules that I've checked don't allow the sku to be overriden, the App Configuration one does have the parameter defined, but does not utilise it in the template.
The text was updated successfully, but these errors were encountered: