File tree Expand file tree Collapse file tree 1 file changed +15
-6
lines changed Expand file tree Collapse file tree 1 file changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -454,6 +454,8 @@ resource hostingPlan 'Microsoft.Web/serverfarms@2022-03-01' = {
454
454
455
455
---
456
456
457
+ *** jgao: properties/name is read-only value now.
458
+
457
459
#### Linux
458
460
459
461
To run your app on Linux, you must also set the property ` "reserved": true ` for the ` serverfarms ` resource:
@@ -1463,9 +1465,12 @@ Both sites and plans must reference the custom location through an `extendedLoca
1463
1465
# [ Bicep] ( #tab/bicep )
1464
1466
1465
1467
``` bicep
1466
- {
1467
- extendedLocation: {
1468
- name: customLocationId
1468
+ resource hostingPlan 'Microsoft.Web/serverfarms@2022-03-01' = {
1469
+ ...
1470
+ {
1471
+ extendedLocation: {
1472
+ name: customLocationId
1473
+ }
1469
1474
}
1470
1475
}
1471
1476
```
@@ -1474,9 +1479,13 @@ Both sites and plans must reference the custom location through an `extendedLoca
1474
1479
1475
1480
``` json
1476
1481
{
1477
- "extendedLocation" : {
1478
- "name" : " [parameters('customLocationId')]"
1479
- },
1482
+ "type" : " Microsoft.Web/serverfarms" ,
1483
+ ...
1484
+ {
1485
+ "extendedLocation" : {
1486
+ "name" : " [parameters('customLocationId')]"
1487
+ },
1488
+ }
1480
1489
}
1481
1490
```
1482
1491
You can’t perform that action at this time.
0 commit comments