Skip to content

Commit 25e6785

Browse files
Merge pull request #265083 from johnmarco/jm-aro-update-bicep-template
ARO: Update ARM/Bicep article
2 parents c341e56 + 781ecc9 commit 25e6785

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/openshift/quickstart-openshift-arm-bicep-template.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.service: azure-redhat-openshift
66
ms.topic: quickstart
77
ms.custom: mode-arm, devx-track-azurecli, devx-track-azurepowershell, devx-track-arm-template, devx-track-bicep
88
ms.author: johnmarc
9-
ms.date: 02/15/2023
9+
ms.date: 02/02/2024
1010
keywords: azure, openshift, aro, red hat, arm, bicep
1111
zone_pivot_groups: azure-red-hat-openshift
1212
#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')
795795
az role assignment create \
796796
--role 'User Access Administrator' \
797797
--assignee-object-id $SP_OBJECT_ID \
798-
--resource-group $RESOURCEGROUP \
798+
--scope $SCOPE \
799799
--assignee-principal-type 'ServicePrincipal'
800800
801801
az role assignment create \
802802
--role 'Contributor' \
803803
--assignee-object-id $SP_OBJECT_ID \
804-
--resource-group $RESOURCEGROUP \
804+
--scope $SCOPE \
805805
--assignee-principal-type 'ServicePrincipal'
806806
```
807807

@@ -821,7 +821,7 @@ az deployment group create \
821821
--parameters location=$LOCATION \
822822
--parameters domain=$DOMAIN \
823823
--parameters pullSecret=$PULL_SECRET \
824-
--parameters clusterName=$CLUSTER \
824+
--parameters clusterName=$ARO_CLUSTER_NAME \
825825
--parameters aadClientId=$SP_CLIENT_ID \
826826
--parameters aadObjectId=$SP_OBJECT_ID \
827827
--parameters aadClientSecret=$SP_CLIENT_SECRET \

0 commit comments

Comments
 (0)