29 lines
793 B
YAML
29 lines
793 B
YAML
---
|
|
- name: Destroy
|
|
hosts: localhost
|
|
connection: local
|
|
gather_facts: false
|
|
no_log: "{{ not (lookup('env', 'MOLECULE_DEBUG') | bool or molecule_yml.provisioner.log|default(false) | bool) }}"
|
|
|
|
tasks:
|
|
- name: destroy digitalocean droplet
|
|
digital_ocean:
|
|
name: "{{ item.name }}"
|
|
state: absent
|
|
unique_name: yes
|
|
with_items:
|
|
- "{{ molecule_yml.platforms }}"
|
|
register: server
|
|
|
|
# Mandatory configuration for Molecule to function.
|
|
|
|
- name: Populate instance config
|
|
set_fact:
|
|
instance_conf: {}
|
|
|
|
- name: Dump instance config
|
|
copy:
|
|
content: "{{ instance_conf | to_json | from_json | molecule_to_yaml | molecule_header }}"
|
|
dest: "{{ molecule_instance_config }}"
|
|
when: server.changed | bool
|