@@ -6,7 +6,7 @@ ms.service: azure-redhat-openshift
6
6
ms.topic : quickstart
7
7
ms.custom : mode-arm, devx-track-azurecli, devx-track-azurepowershell, devx-track-arm-template, devx-track-bicep
8
8
ms.author : johnmarc
9
- ms.date : 02/15/2023
9
+ ms.date : 02/02/2024
10
10
keywords : azure, openshift, aro, red hat, arm, bicep
11
11
zone_pivot_groups : azure-red-hat-openshift
12
12
# Customer intent: I need to use ARM templates or Bicep files to deploy my Azure Red Hat OpenShift cluster.
@@ -795,13 +795,13 @@ SP_OBJECT_ID=$(az ad sp show --id $SP_CLIENT_ID | jq -r '.id')
795
795
az role assignment create \
796
796
--role 'User Access Administrator' \
797
797
--assignee-object-id $SP_OBJECT_ID \
798
- --resource-group $RESOURCEGROUP \
798
+ --scope $SCOPE \
799
799
--assignee-principal-type 'ServicePrincipal'
800
800
801
801
az role assignment create \
802
802
--role 'Contributor' \
803
803
--assignee-object-id $SP_OBJECT_ID \
804
- --resource-group $RESOURCEGROUP \
804
+ --scope $SCOPE \
805
805
--assignee-principal-type 'ServicePrincipal'
806
806
```
807
807
@@ -821,7 +821,7 @@ az deployment group create \
821
821
--parameters location=$LOCATION \
822
822
--parameters domain=$DOMAIN \
823
823
--parameters pullSecret=$PULL_SECRET \
824
- --parameters clusterName=$CLUSTER \
824
+ --parameters clusterName=$ARO_CLUSTER_NAME \
825
825
--parameters aadClientId=$SP_CLIENT_ID \
826
826
--parameters aadObjectId=$SP_OBJECT_ID \
827
827
--parameters aadClientSecret=$SP_CLIENT_SECRET \
0 commit comments