This repository has been archived on 2022-08-22. You can view files and clone it, but cannot push or open issues or pull requests.
autonomic.new-hetzner/molecule/default/converge.yml
decentral1se 08f3d86a65
Some checks failed
continuous-integration/drone/push Build is failing
loading members the new way
2022-05-31 07:41:55 +02:00

30 lines
896 B
YAML

---
- name: Converge
hosts: all
vars:
- new_hetzner_server_name: autonomic.new-hetzner-molecule
- add_users_inventory_hostname: autonomic.new-hetzner-molecule
- new_hetzner_server_type: cx11
- new_hetzner_server_image: debian-10
- new_hetzner_delete_protection: false
- new_hetzner_rebuild_protection: false
- members: files/members.yml
pre_tasks:
- name: Include resource variables
include_vars: "{{ members }}"
tasks:
- name: Run the role under test
block:
- import_role:
name: autonomic.new-hetzner
always:
- name: Flush all handlers
meta: flush_handlers
ignore_errors: true
- name: Ensure the server is deleted
hcloud_server:
name: "{{ new_hetzner_server_name }}"
api_token: "{{ lookup('env', 'HCLOUD_TOKEN') }}"
state: absent