11 lines
290 B
YAML
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 }}"
|