Update gitignore and README example

This commit is contained in:
Sangelo 2024-01-06 18:50:46 +01:00
parent 83df63debc
commit 5578e9af56
2 changed files with 14 additions and 1 deletions

8
.gitignore vendored
View file

@ -1,4 +1,10 @@
# General Ignores
.DS_Store
.vault
# secret environment vars
secrets.enc
secrets/
.vault
# misc
todo

View file

@ -1,3 +1,10 @@
# Ansible Playbooks
Ansible Playbooks used to deploy services on Lunivity.
Documentation will follow.
```bash
# run playbook for a host
$ ansible-playbook -i inventory/<inventory>.ini -e @secrets/<secrets_file>.enc --ask-vault-pass playbooks/<playbook>.yml
```