forked from redhat-cop/agnosticd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
destroy.yml
28 lines (24 loc) · 962 Bytes
/
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
---
################################################################################
################################################################################
############ Step 006 Destroy Workshop using workshop_prefix
################################################################################
################################################################################
- import_playbook: setup_runtime.yml
- name: 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: completion_callback.yml