17 lines
319 B
YAML
17 lines
319 B
YAML
---
|
|
|
|
#- name: get environment
|
|
# ec2_metadata_facts:
|
|
|
|
- name: apply common config
|
|
hosts: all
|
|
roles:
|
|
- { role: common, become: yes }
|
|
|
|
- name: setup nextcloud instance
|
|
hosts: nextcloud
|
|
roles:
|
|
- { role: docker, become: yes }
|
|
- { role: monitoring-client, become: yes }
|
|
- { role: nextcloud, become: yes }
|
|
|