Skip to content

Commit cb61ae9

Browse files
authored
Update quickstart-openshift-arm-bicep-template.md
fixing typo to make steps work
1 parent 85760c3 commit cb61ae9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,7 @@ New-AzResourceGroup -Name $resourceGroup -Location $location
655655
```powershell
656656
$suffix=Get-Random # random suffix for the Service Principal
657657
$spDisplayName="sp-$resourceGroup-$suffix"
658-
$azureADAppSp = New-AzADServicePrincipal -DisplayName $displayName -Role Contributor
658+
$azureADAppSp = New-AzADServicePrincipal -DisplayName $spDisplayName -Role Contributor
659659
660660
New-AzRoleAssignment -ObjectId $azureADAppSp.Id -RoleDefinitionName 'User Access Administrator' -ResourceGroupName $resourceGroup -ObjectType 'ServicePrincipal'
661661
New-AzRoleAssignment -ObJectId $azureADAppSp.Id -RoleDefinitionName 'Contributor' -ResourceGroupName $resourceGroup -ObjectType 'ServicePrincipal'

0 commit comments

Comments
 (0)