fix typo
This commit is contained in:
parent
f2565768aa
commit
24a723fb60
|
@ -168,7 +168,7 @@ $ az ad app create \
|
|||
|
||||
### Create a Service Principal
|
||||
|
||||
You cannot directly grant permissions to an application. Instead, you create a service principal and assign permissions to the service principal. To create a service principal for use with Packer, run the below command sepifying the subscription. This will grant Packer the contributor role to the subscription. The output of this command is your service principal credentials, save these in a safe place as you will need these to configure Packer.
|
||||
You cannot directly grant permissions to an application. Instead, you create a service principal and assign permissions to the service principal. To create a service principal for use with Packer, run the below command specifying the subscription. This will grant Packer the contributor role to the subscription. The output of this command is your service principal credentials, save these in a safe place as you will need these to configure Packer.
|
||||
|
||||
```shell
|
||||
az ad sp create-for-rbac -n "Packer" --role contributor \
|
||||
|
@ -195,4 +195,4 @@ $ az role definition list --output json | jq ".[] | {name:.roleName, description
|
|||
|
||||
### Configuring Packer
|
||||
|
||||
Now (finally) everything has been setup in Azure and our service principal has been created. You can use the output from creating your service principal in your template.
|
||||
Now (finally) everything has been setup in Azure and our service principal has been created. You can use the output from creating your service principal in your template.
|
||||
|
|
Loading…
Reference in New Issue