File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -49,23 +49,23 @@ resource acr 'Microsoft.ContainerRegistry/registries@2020-11-01-preview' = {
49
49
50
50
51
51
// Generate bicep code to create an Azure App Service Plan
52
- resource appServicePlan 'Microsoft.Web/serverfarms@2020-06 -01' = {
52
+ resource appServicePlan 'Microsoft.Web/serverfarms@2022-09 -01' = {
53
53
name : appServicePlanName
54
54
location : location
55
+ kind : 'linux'
55
56
properties : {
56
- name : appServicePlanName
57
- reserved : true
58
- sku : {
59
- name : sku
60
- tier : 'Standard'
61
- size : 'S1'
62
- }
57
+ zoneRedundant : false
58
+ }
59
+ sku : {
60
+ capacity : 1
61
+ tier : 'Standard'
62
+ size : sku
63
63
}
64
64
}
65
65
66
66
// Generate bicep code to create an Azure Web App using docker image name imageName and startup command of startupCommand
67
67
68
- resource webApp 'Microsoft.Web/sites@2020-06 -01' = {
68
+ resource webApp 'Microsoft.Web/sites@2022-09 -01' = {
69
69
name : webAppName
70
70
location : location
71
71
properties : {
You can’t perform that action at this time.
0 commit comments