Fix styling of introduction docs

This commit is contained in:
Ethan Paul 2022-05-07 12:27:29 -04:00
parent c729414b03
commit 2f75180623
No known key found for this signature in database
GPG Key ID: D0E2CBF1245E92BF

View File

@ -27,13 +27,11 @@ terminal. Whatever, these things happen.
The built-in tool Ansible provides, The built-in tool Ansible provides,
[`ansible-vault rekey`](https://docs.ansible.com/ansible/latest/cli/ansible-vault.html#rekey), [`ansible-vault rekey`](https://docs.ansible.com/ansible/latest/cli/ansible-vault.html#rekey),
suffers from two main drawbacks: suffers from two main drawbacks: first, it only works on vault encrypted files and not on
vault encrypted YAML data; and second, it only works on a single vault encrypted file at
1. It only works on vault encrypted files and not on vault encrypted YAML data a time. To rekey everything in a large project you'd need to write a script that
2. It only works on a single vault encrypted file at a time. recursively goes through every file and rekeys every encrypted file and YAML variable all
at once.
To rekey everything in a large project you'd need to write a script that goes through
every file and rekeys everything in every format it can find.
This is that script. This is that script.