You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
517 B
30 lines
517 B
- 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
|
|
|