Skip to content

Commit c069f0c

Browse files
fix: Simplify allowed values for hosting plan SKU in Bicep and JSON t… (#1923)
1 parent da653ef commit c069f0c

File tree

2 files changed

+4
-20
lines changed

2 files changed

+4
-20
lines changed

infra/main.bicep

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,18 +35,10 @@ var hostingPlanName string = 'asp-${solutionSuffix}'
3535

3636
@description('Optional. The pricing tier for the App Service plan.')
3737
@allowed([
38-
'F1'
39-
'D1'
40-
'B1'
4138
'B2'
4239
'B3'
43-
'S1'
4440
'S2'
4541
'S3'
46-
'P1'
47-
'P2'
48-
'P3'
49-
'P4'
5042
])
5143
param hostingPlanSku string = 'B3'
5244

infra/main.json

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"_generator": {
77
"name": "bicep",
88
"version": "0.37.4.10188",
9-
"templateHash": "7004073046163258445"
9+
"templateHash": "14151002700383033945"
1010
}
1111
},
1212
"parameters": {
@@ -48,18 +48,10 @@
4848
"type": "string",
4949
"defaultValue": "B3",
5050
"allowedValues": [
51-
"F1",
52-
"D1",
53-
"B1",
5451
"B2",
5552
"B3",
56-
"S1",
5753
"S2",
58-
"S3",
59-
"P1",
60-
"P2",
61-
"P3",
62-
"P4"
54+
"S3"
6355
],
6456
"metadata": {
6557
"description": "Optional. The pricing tier for the App Service plan."
@@ -55436,9 +55428,9 @@
5543655428
}
5543755429
},
5543855430
"dependsOn": [
55439-
"[format('avmPrivateDnsZones[{0}]', variables('dnsZoneIndex').storageFile)]",
55440-
"[format('avmPrivateDnsZones[{0}]', variables('dnsZoneIndex').storageBlob)]",
5544155431
"[format('avmPrivateDnsZones[{0}]', variables('dnsZoneIndex').storageQueue)]",
55432+
"[format('avmPrivateDnsZones[{0}]', variables('dnsZoneIndex').storageBlob)]",
55433+
"[format('avmPrivateDnsZones[{0}]', variables('dnsZoneIndex').storageFile)]",
5544255434
"managedIdentityModule",
5544355435
"network"
5544455436
]

0 commit comments

Comments
 (0)