You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I updated the following:
- Bicep code, especially role assignments
- Removed role from "Create a service principal for the new Azure AD application" as when specifying a role without a scope, the `az ad sp create-for-rbac` command throws an exception
- Changed the link to the ARO GitHub repo as in the current version the article points to the Azure Container Apps repo.
-------
cc: @johnmarco
Copy file name to clipboardExpand all lines: articles/openshift/quickstart-openshift-arm-bicep-template.md
+19-18Lines changed: 19 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -453,7 +453,10 @@ param aadClientSecret string
453
453
@description('The ObjectID of the Resource Provider Service Principal')
454
454
param rpObjectId string
455
455
456
-
var contribRole = '/subscriptions/${subscription().subscriptionId}/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c'
456
+
var contributorRoleDefinitionId = resourceId('Microsoft.Authorization/roleDefinitions', 'b24988ac-6180-42a0-ab88-20f7382dd24c')
457
+
var resourceGroupId = '/subscriptions/${subscription().subscriptionId}/resourceGroups/aro-${domain}-${location}'
458
+
var masterSubnetId=resourceId('Microsoft.Network/virtualNetworks/subnets', clusterVnetName, 'master')
459
+
var workerSubnetId=resourceId('Microsoft.Network/virtualNetworks/subnets', clusterVnetName, 'worker')
0 commit comments