mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-04-01 02:42:49 -05:00
add main files
This commit is contained in:
parent
c6db070479
commit
27c99f318c
2 changed files with 33 additions and 0 deletions
3
deployment/requirements.yml
Normal file
3
deployment/requirements.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
collections:
|
||||
- name: community.docker
|
||||
- name: ansible.posix
|
30
deployment/vault_pgsql.yml
Normal file
30
deployment/vault_pgsql.yml
Normal file
|
@ -0,0 +1,30 @@
|
|||
- hosts: all
|
||||
roles:
|
||||
- role: preinstall
|
||||
gather_facts: yes
|
||||
any_errors_fatal: true
|
||||
|
||||
- hosts: postgres
|
||||
roles:
|
||||
- role: postgres
|
||||
when: use_postgres == "true"
|
||||
gather_facts: yes
|
||||
any_errors_fatal: true
|
||||
|
||||
- hosts: vaultwarden
|
||||
roles:
|
||||
- role: vaultwarden
|
||||
any_errors_fatal: true
|
||||
|
||||
- hosts: nginx
|
||||
roles:
|
||||
- role: keepalived
|
||||
when: use_keepalived == "true"
|
||||
gather_facts: yes
|
||||
any_errors_fatal: true
|
||||
|
||||
- hosts: nginx
|
||||
roles:
|
||||
- role: nginx
|
||||
gather_facts: yes
|
||||
any_errors_fatal: true
|
Loading…
Add table
Reference in a new issue