R/W an ansible-vault yaml file
Project description
This project aim to R/W an ansible-vault yaml file
You can install with pip.
$ pip install ansible-vault
When you have an ansible-vault file, then you can read file. See below.
from ansible_vault import Vault vault = Vault('password') data = vault.load(open('vault.yml').read())
When you have to write data, then you can write data to file. See below.
from ansible_vault import Vault vault = Vault('password') vault.dump(data, open('vault.yml', 'w')) # also you can get encrypted text print(vault.dump(data))
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size ansible-vault-1.0.5.tar.gz (3.2 kB) | File type Source | Python version None | Upload date | Hashes View |