adc/ansible/halo.yml

17 lines
349 B
YAML
Raw Normal View History

2022-12-19 21:47:29 +00:00
---
- 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'] }