blob: 95bae4897e5e77cae485cd3ce803123150c9226c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
- name: Update DigitalOcean machines
hosts: digitalocean
vars:
digitalocean_api_url: https://api.digitalocean.com/v2
vars_files:
- misc/vaults/digitalocean.yml
roles:
- { role: shutdown }
- { role: snapshot }
- { role: poweron }
- { role: sysupgrade }
- { role: reboot }
|