mirror of https://github.com/apache/lucene.git
10 lines
234 B
YAML
10 lines
234 B
YAML
|
- hosts: localhost
|
||
|
gather_facts: false
|
||
|
tasks:
|
||
|
- name: Destroy cloudformation stack
|
||
|
cloudformation:
|
||
|
stack_name: "{{ stack_name }}"
|
||
|
region: "{{ region }}"
|
||
|
state: absent
|
||
|
delegate_to: localhost
|