HiPoweredAnsible/provision/linode/destroy_server_linode.yml

11 lines
290 B
YAML

- name: Destroy an existing Linode Instance
hosts: localhost
gather_facts: false
tasks:
- name: Destroy a Linode instance
linode.cloud.instance:
api_token: "{{ api_token }}"
label: "{{ server_name }}"
state: absent
#tags: "{{ server_tags }}"