Skip to content

Commit feb8523

Browse files
authored
Fixing OCPBUGS-23793 in Update installation-creating-azure-service-principal.adoc
As per bug https://issues.redhat.com/browse/OCPBUGS-23793 changing the command for adding "user administrator access" to service principle. Verified with my own test where the existing command from doc fails. $ az role assignment create --role "User Access Administrator" \ --assignee-object-id $(az ad sp show --id <omitted> --query id -o tsv) the following arguments are required: --scope
1 parent 2b06431 commit feb8523

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

modules/installation-creating-azure-service-principal.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,7 @@ control. For more information, see https://aka.ms/azadsp-cli
5353
----
5454
$ az role assignment create --role "User Access Administrator" \
5555
--assignee-object-id $(az ad sp show --id <appId> --query id -o tsv) <1>
56+
--scope /subscriptions/<subscription_id> <2>
5657
----
5758
<1> Specify the `appId` parameter value for your service principal.
59+
<2> Specifies the subscription ID.

0 commit comments

Comments
 (0)