updated usage example (#9081)

* updated usage example

* Docs: updated examples with base64 - removed herestring for echo instead that's more simple.

* Docs: updated examples with base64 - removed herestring for echo instead that's more simple.

Co-authored-by: Mehdi Ahmadi <aphorise@gmail.com>
This commit is contained in:
DevOps Rob 2022-08-24 14:03:30 +01:00 committed by GitHub
parent 312f7a1882
commit 9e20e4128d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 3 deletions

4
changelog/9081.txt Normal file
View File

@ -0,0 +1,4 @@
```release-note:improvement
website/docs: changed to echo for all string examples instead of (<<<) here-string.
```

View File

@ -577,7 +577,7 @@ mechanism for this data as part of a JSON payload is to base64-encode it.
Fist, encode the plaintext with base64:
```shell-session
$ base64 <<< "the quick brown fox"
$ echo "the quick brown fox" | base64
dGhlIHF1aWNrIGJyb3duIGZveAo=
```

View File

@ -131,7 +131,7 @@ management tool.
Write a policy and proceed to link it to the role:
```shell-session
$ vault write consul/roles/my-role policy="$(base64 <<< 'key "" { policy = "read" }')"
$ vault write consul/roles/my-role policy="$(echo 'key "" { policy = "read" }' | base64)"
Success! Data written to: consul/roles/my-role
```

View File

@ -155,7 +155,7 @@ the proper permission, it can use this secrets engine.
mechanism for this data as part of a JSON payload is to base64-encode it.
```text
$ vault write transit/encrypt/my-key plaintext=$(base64 <<< "my secret data")
$ vault write transit/encrypt/my-key plaintext=$(echo "my secret data" | base64)
Key Value
--- -----