adc/ansible/halo.yml
2022-12-19 15:47:29 -06:00

17 lines
349 B
YAML

---
- name: init droplet
hosts: halo
tasks:
- debug: msg="Deploying droplet config to cloud server"
roles:
- { name: droplets, tags: ['init']}
- name: deploy the halo stack
hosts: halo
remote_user: "{{ remote_user }}"
tasks:
- debug: msg="Deploying halo stack to cloud server"
roles:
- { name: halo, tags: ['halo'] }