Questions
- Ansible Vault encrypts your data at rest using which encryption technology?
a) Triple DES/3DES
b) MD5
c) AES
d) Twofish
- Ansible Vault instances must always exist as separate files to the playbook itself:
a) True
b) False
- You can ingest data from more than one Ansible Vault instance when running a playbook:
a) True
b) False
- When executing a playbook that makes use of Vault-encrypted data, you can provide the password:
a) Interactively at playbook launch
b) Using a plaintext file containing just the password
c) Using a script to retrieve the password from another source
d) All of the above
- Ansible will never print vault data to the terminal during a playbook run:
a) True
b) False
- You can prevent Ansible from inadvertently printing vault data to the terminal during a playbook run using the following task parameter:
a)
no_print
b)
no_vault
c)
no_log
- An interrupted playbook run could leave sensitive unencrypted data on a remote host:
a) True
b) False
- What is used...