Skip to content

Commit 0a920e2

Browse files
1779 single subscription scenario fails (#1782)
Co-authored-by: Jack Tracey <41163455+jtracey93@users.noreply.github.com>
1 parent 8ab6be1 commit 0a920e2

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

docs/wiki/Whats-new.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
- [Updates](#updates)
44
- [🔃 Policy Refresh Q1 FY25](#-policy-refresh-q1-fy25)
5+
- [October 2024](#october-2024)
56
- [September 2024](#september-2024)
67
- [August 2024](#august-2024)
78
- [July 2024](#july-2024)
@@ -68,6 +69,12 @@ Here's what's changed in Enterprise Scale/Azure Landing Zones:
6869

6970
>Note: there a known issue when re-deploying ALZ using the portal accelerator with CMK enabled. For details please see [Known Issues](ALZ-Known-Issues).
7071
72+
### October 2024
73+
74+
#### Tooling
75+
76+
- Resolved a bug in the Portal Accelerator related to deploying the single platform subscription setup. Incorrect parameter settings led to the failure of AMBA, as it erroneously attempted to deploy to a standard management group structure instead of a single platform management group as needed.
77+
7178
### September 2024
7279

7380
#### Documentation

eslzArm/eslzArm.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -2346,13 +2346,13 @@
23462346
"value": "[variables('mgmtGroups').platform]"
23472347
},
23482348
"IdentityManagementGroup": {
2349-
"value": "[variables('mgmtGroups').identity]"
2349+
"value": "[variables('mgmtGroups').platform]"
23502350
},
23512351
"managementManagementGroup": {
2352-
"value": "[variables('mgmtGroups').management]"
2352+
"value": "[variables('mgmtGroups').platform]"
23532353
},
23542354
"connectivityManagementGroup": {
2355-
"value": "[variables('mgmtGroups').connectivity]"
2355+
"value": "[variables('mgmtGroups').platform]"
23562356
},
23572357
"LandingZoneManagementGroup": {
23582358
"value": "[variables('mgmtGroups').lzs]"
@@ -2391,7 +2391,7 @@
23912391
"value": "[array(parameters('ambaAgEmailContact'))]"
23922392
},
23932393
"managementSubscriptionId": {
2394-
"value": "[parameters('managementSubscriptionId')]"
2394+
"value": "[parameters('singlePlatformSubscriptionId')]"
23952395
},
23962396
"enableAMBALoadBalancing": {
23972397
"value": "[parameters('enableAMBALoadBalancing')]"
@@ -8861,7 +8861,7 @@
88618861
}
88628862
},
88638863
/*
8864-
Note: ES Lite only: assign policy for identity to deny subnet without NSG
8864+
Note: ES Lite only: assign policy for identity to deny subnet without NSG
88658865
*/
88668866
{
88678867
// Assigning deny subnet without nsg policy to identity management group if condition is true
@@ -8892,7 +8892,7 @@
88928892
}
88938893
},
88948894
/*
8895-
Note: ES Lite only: assign policy to deny management ports from internet to platform MG
8895+
Note: ES Lite only: assign policy to deny management ports from internet to platform MG
88968896
*/
88978897
{
88988898
// Assigning deny management ports from internet policy landing zones management group if condition is true

0 commit comments

Comments
 (0)