67f6f2f657
Closes #26730 Signed-off-by: Ryan Emerson <remerson@redhat.com>
26 lines
616 B
YAML
26 lines
616 B
YAML
- name: 'Delete EC2 instances'
|
|
amazon.aws.ec2_instance:
|
|
state: absent
|
|
region: '{{ region }}'
|
|
filters:
|
|
"tag:Name": '{{ cluster_name }}*'
|
|
|
|
- name: 'Delete EC2 security group'
|
|
amazon.aws.ec2_group:
|
|
state: absent
|
|
region: '{{ region }}'
|
|
name: '{{ cluster_name }}'
|
|
|
|
- name: 'Delete Key'
|
|
amazon.aws.ec2_key:
|
|
state: absent
|
|
region: '{{ region }}'
|
|
name: '{{ cluster_name }}'
|
|
|
|
- name: 'Delete inventory, key, and log'
|
|
file:
|
|
state: absent
|
|
path: '{{ item }}'
|
|
with_items:
|
|
- '{{ cluster_name }}_{{ region }}_inventory.yml'
|
|
- '{{ cluster_name }}_{{ region }}.pem'
|