Open
Description
API Spec link
API Spec version
2024-04-01
Please describe the feature.
Right now it's not possible to create a ZipDeploy resource in a Bicep template because the Bicep types don't include the ZipDeploy extension, and that's because the API spec also doesn't include it.
resource functionApp 'Microsoft.Web/sites@2022-09-01' = {
name: functionAppName
location: location
kind: 'functionapp'
identity: functionAppIdentity
properties: siteProperties
resource stagingSlot 'slots' = {
name: 'staging'
location: location
kind: 'functionapp'
identity: functionAppIdentity
properties: union(siteProperties, { siteConfig: { autoSwapSlotName: 'production' } })
resource stagingAuthSettingsConfig 'config' = {
name: 'authsettingsV2'
properties: authSettingsConfigProperties
}
resource zipDeploy 'extensions' = {
name: 'ZipDeploy' // This line fails.
properties: {
packageUri: packageUri
}
}
}
resource authSettingsConfig 'config' = {
name: 'authsettingsV2'
properties: authSettingsConfigProperties
}
}
I'd like it to be added so that we can update the Bicep types and then use it in templates.
Metadata
Metadata
Assignees
Labels
This issue is related to a management-plane library.Workflow: This issue is responsible by Azure service team.Issues that are reported by GitHub users external to the Azure organization.This issue requires a new behavior in the product in order be resolved.The issue doesn't require a change to the product in order to be resolved. Most issues start as that