summaryrefslogtreecommitdiff
path: root/README_vault.md
diff options
context:
space:
mode:
Diffstat (limited to 'README_vault.md')
-rw-r--r--README_vault.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README_vault.md b/README_vault.md
index 4b623e46..680a50d8 100644
--- a/README_vault.md
+++ b/README_vault.md
@@ -94,20 +94,20 @@ Working with Vault files
* create new vault:
```
-# ansible-vault create secrets/foo.vault.yml
+# ansible-vault create group_vars/mygroup/vault.yml
```
This will open up an editor which allows you to add variables. Once you
store and close the file the content is automatically encrypted.
* edit a vault file:
```
-# ansible-vault edit secrets/foo.vault.yml
+# ansible-vault edit group_vars/mygroup/vault.yml
```
This will open up an editor which allows you to add/remove/change variables.
Once you store and close the file the content is automatically encrypted.
* show the contents of a vault file:
```
-# ansible-vault view secrets/foo.vault.yml
+# ansible-vault view group_vars/mygroup/vault.yml
```
This will automatially decrypt the file and print it's contents.