Replies: 1 comment
-
I guess it is an issue with the resource provider when using an Using this bicep file with the resource app_resource 'Microsoft.Web/sites@2023-01-01' existing = {
name: 'function-name-here'
scope: resourceGroup('resource-group-name-here')
resource config 'config' existing = {
name: 'appsettings'
}
}
output out object = list(app_resource::config.id, '2023-01-01').properties If I remove the Also, when I check the actual {
"id": "***",
"name": "appsettings",
"type": "Microsoft.Web/sites/config",
"location": "West Europe",
"tags": {},
"properties": []
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Full error:
I'm trying to append one more environment variable to my App Service main slot as well as an extra slot called staging. Bicep thinks I'm passing an array but it should be an object, can anyone help figure out why that is?
Looking at vscode tooltip for the types it says it's a string dictionary which I guess is an object:
Beta Was this translation helpful? Give feedback.
All reactions