Skip to content

Need help with bicep deployment error #8087

Answered by vbeer008
vbeer008 asked this question in Q&A
Discussion options

You must be logged in to vote

Finally, got the problem solved with Azure Support Engineer.
There has a bug for AppServicePlain ==> Microsoft.Web/serverFarms

From the Azure learning modules, exercise code is missing "properties:{}", you MUST include the empty properties: {} if you don't have any values to set.

Original:

resource appServicePlan 'Microsoft.Web/serverFarms@2020-06-01' = {
name: appServicePlanName
location: location
sku: {
name: appServicePlanSku.name
tier: appServicePlanSku.tier
capacity: appServicePlanInstanceCount
}
}

Workaround Solution:

resource appServicePlan 'Microsoft.Web/serverFarms@2020-06-01' = {
name: appServicePlanName
location: location
sku: {
name: appServicePlanSku.name
tier: appServicePlan…

Replies: 3 comments 16 replies

Comment options

You must be logged in to vote
13 replies
@brwilkinson
Comment options

@brwilkinson
Comment options

@ShaunInIdaho
Comment options

@brwilkinson
Comment options

@vbeer008
Comment options

Comment options

You must be logged in to vote
2 replies
@vbeer008
Comment options

@brwilkinson
Comment options

Comment options

You must be logged in to vote
1 reply
@ShaunInIdaho
Comment options

Answer selected by vbeer008
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants