mirror of
https://github.com/enpaul/vault2vault.git
synced 2024-11-21 17:46:49 +00:00
Update documentation for 0.1.1
Update changelog with 0.1.1
This commit is contained in:
parent
c7c2a87ebb
commit
d61d2cb1a1
11
CHANGELOG.md
11
CHANGELOG.md
@ -2,6 +2,17 @@
|
|||||||
|
|
||||||
See also: [Github Release Page](https://github.com/enpaul/vault2vault/releases).
|
See also: [Github Release Page](https://github.com/enpaul/vault2vault/releases).
|
||||||
|
|
||||||
|
## Version 0.1.1
|
||||||
|
|
||||||
|
View this release on: [Github](https://github.com/enpaul/vault2vault/releases/tag/0.1.1),
|
||||||
|
[PyPI](https://pypi.org/project/vault2vault/0.1.1/)
|
||||||
|
|
||||||
|
- Fix bug causing stack trace when the same vaulted block appears in a YAML file more than
|
||||||
|
once
|
||||||
|
- Fix bug where the `--ignore-undecryptable` option was not respected for vaulted variables
|
||||||
|
in YAML files
|
||||||
|
- Update logging messages and levels to improve verbose output
|
||||||
|
|
||||||
## Version 0.1.0
|
## Version 0.1.0
|
||||||
|
|
||||||
View this release on: [Github](https://github.com/enpaul/vault2vault/releases/tag/0.1.0),
|
View this release on: [Github](https://github.com/enpaul/vault2vault/releases/tag/0.1.0),
|
||||||
|
10
README.md
10
README.md
@ -64,8 +64,8 @@ and redevelopment. Here are the command line options:
|
|||||||
|
|
||||||
```
|
```
|
||||||
> vault2vault --help
|
> vault2vault --help
|
||||||
usage: vault2vault [-h] [--version] [--interactive] [-v] [-b] [-i VAULT_ID] [--ignore-undecryptable] [--old-pass-file OLD_PASS_FILE]
|
usage: vault2vault [-h] [--version] [--interactive] [-v] [-b] [-i VAULT_ID] [--ignore-undecryptable]
|
||||||
[--new-pass-file NEW_PASS_FILE]
|
[--old-pass-file OLD_PASS_FILE] [--new-pass-file NEW_PASS_FILE]
|
||||||
[paths ...]
|
[paths ...]
|
||||||
|
|
||||||
Recursively rekey ansible-vault encrypted files and in-line variables
|
Recursively rekey ansible-vault encrypted files and in-line variables
|
||||||
@ -76,13 +76,15 @@ positional arguments:
|
|||||||
options:
|
options:
|
||||||
-h, --help show this help message and exit
|
-h, --help show this help message and exit
|
||||||
--version Show program version and exit
|
--version Show program version and exit
|
||||||
--interactive Step through files and variables interactively, prompting for confirmation before making each change
|
--interactive Step through files and variables interactively, prompting for confirmation before making
|
||||||
|
each change
|
||||||
-v, --verbose Increase verbosity; can be repeated
|
-v, --verbose Increase verbosity; can be repeated
|
||||||
-b, --backup Write a backup of every file to be modified, suffixed with '.bak'
|
-b, --backup Write a backup of every file to be modified, suffixed with '.bak'
|
||||||
-i VAULT_ID, --vault-id VAULT_ID
|
-i VAULT_ID, --vault-id VAULT_ID
|
||||||
Limit rekeying to encrypted secrets with the specified Vault ID
|
Limit rekeying to encrypted secrets with the specified Vault ID
|
||||||
--ignore-undecryptable
|
--ignore-undecryptable
|
||||||
Ignore any file or variable that is not decryptable with the provided vault secret instead of raising an error
|
Ignore any file or variable that is not decryptable with the provided vault secret instead
|
||||||
|
of raising an error
|
||||||
--old-pass-file OLD_PASS_FILE
|
--old-pass-file OLD_PASS_FILE
|
||||||
Path to a file with the old vault password to decrypt secrets with
|
Path to a file with the old vault password to decrypt secrets with
|
||||||
--new-pass-file NEW_PASS_FILE
|
--new-pass-file NEW_PASS_FILE
|
||||||
|
Loading…
Reference in New Issue
Block a user