load-from-vault.yml 266 B

1234567891011121314
  1. ---
  2. - name: display variables foo and bar
  3. vars_files:
  4. - secretstore.yml
  5. - topsecretstore.yml
  6. hosts: localhost
  7. gather_facts: no
  8. tasks:
  9. - name: show what foo is set to
  10. debug: var=foo
  11. - name: show what bar is set to
  12. debug: var=bar