2021-12-27 08:58:52 -08:00
|
|
|
---
|
|
|
|
|
|
|
|
#- name: get environment
|
|
|
|
# ec2_metadata_facts:
|
|
|
|
|
2022-01-01 14:55:44 -08:00
|
|
|
- name: apply common config
|
|
|
|
hosts: all
|
|
|
|
roles:
|
|
|
|
- { role: common, become: yes }
|
|
|
|
|
2021-12-27 08:58:52 -08:00
|
|
|
- name: setup nextcloud instance
|
|
|
|
hosts: nextcloud
|
|
|
|
roles:
|
2022-01-03 07:41:24 -08:00
|
|
|
- { role: docker, become: yes }
|
2022-01-03 08:08:38 -08:00
|
|
|
- { role: monitoring-client, become: yes }
|
2021-12-27 08:58:52 -08:00
|
|
|
- { role: nextcloud, become: yes }
|
|
|
|
|