docs: fix formatting in azure secrets overview (#12058)
This commit is contained in:
parent
fc8914db16
commit
8bc9790bf4
|
@ -29,7 +29,7 @@ management tool.
|
||||||
|
|
||||||
1. Enable the Azure secrets engine:
|
1. Enable the Azure secrets engine:
|
||||||
|
|
||||||
```text
|
```shell
|
||||||
$ vault secrets enable azure
|
$ vault secrets enable azure
|
||||||
Success! Enabled the azure secrets engine at: azure/
|
Success! Enabled the azure secrets engine at: azure/
|
||||||
```
|
```
|
||||||
|
@ -39,12 +39,12 @@ management tool.
|
||||||
|
|
||||||
1. Configure the secrets engine with account credentials:
|
1. Configure the secrets engine with account credentials:
|
||||||
|
|
||||||
```text
|
```shell
|
||||||
$ vault write azure/config \
|
$ vault write azure/config \
|
||||||
subscription_id=$AZURE_SUBSCRIPTION_ID \
|
subscription_id=$AZURE_SUBSCRIPTION_ID \
|
||||||
tenant_id=$AZURE_TENANT_ID \
|
tenant_id=$AZURE_TENANT_ID \
|
||||||
client_id=$AZURE_CLIENT_ID \
|
client_id=$AZURE_CLIENT_ID \
|
||||||
client_secret=$AZURE_CLIENT_SECRET
|
client_secret=$AZURE_CLIENT_SECRET
|
||||||
|
|
||||||
Success! Data written to: azure/config
|
Success! Data written to: azure/config
|
||||||
```
|
```
|
||||||
|
@ -58,7 +58,9 @@ management tool.
|
||||||
To configure a role called "my-role" with an existing service principal:
|
To configure a role called "my-role" with an existing service principal:
|
||||||
|
|
||||||
```shell-session
|
```shell-session
|
||||||
$ vault write azure/roles/my-role application_object_id=<existing_app_obj_id> ttl=1h
|
$ vault write azure/roles/my-role \
|
||||||
|
application_object_id=<existing_app_obj_id> \
|
||||||
|
ttl=1h
|
||||||
```
|
```
|
||||||
|
|
||||||
Alternatively, to configure the role to create a new service principal with Azure roles:
|
Alternatively, to configure the role to create a new service principal with Azure roles:
|
||||||
|
@ -140,7 +142,11 @@ Group specification by name must yield a single matching group.
|
||||||
Example of role configuration:
|
Example of role configuration:
|
||||||
|
|
||||||
```shell-session
|
```shell-session
|
||||||
$ vault write azure/roles/my-role ttl=1h max_ttl=24h azure_roles=@az_roles.json azure_groups=@az_groups.json
|
$ vault write azure/roles/my-role \
|
||||||
|
ttl=1h \
|
||||||
|
max_ttl=24h \
|
||||||
|
azure_roles=@az_roles.json \
|
||||||
|
azure_groups=@az_groups.json
|
||||||
|
|
||||||
$ cat az_roles.json
|
$ cat az_roles.json
|
||||||
[
|
[
|
||||||
|
|
Loading…
Reference in a new issue