forked from redhat-cop/agnosticd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
destroy.yml
34 lines (29 loc) · 1.06 KB
/
destroy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
################################################################################
################################################################################
############ Step 006 Destroy Workshop using workshop_prefix
################################################################################
################################################################################
- import_playbook: setup_runtime.yml
- name: Step 0000 Detect in what region the stack is
hosts: localhost
connection: local
gather_facts: False
become: no
tasks:
- when:
- cloud_provider == 'ec2'
- target_regions is not defined
include_tasks: cloud_providers/ec2_detect_region_tasks.yml
- import_playbook: >-
{{ lookup('first_found', {
'files': [ 'destroy_env.yml',
cloud_provider + '_destroy_env.yml'
],
'paths': [ 'configs/' + env_type,
'cloud_providers/'
]
})
}}
- import_playbook: save_output_dir.yml
- import_playbook: completion_callback.yml