Guillaume Coré
2020-03-11 1d970fbaa4bd88c9d094d9587db59fdf9cd0239a
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
- hosts: localhost
  gather_facts: false
  tasks:
    - debug:
        msg: Test to get and release a sandbox without aws-nuke and IPA
 
    - include_role:
        name: infra-aws-get-sandbox
 
    - include_role:
        name: infra-aws-release-sandbox
      vars:
        nuke_sandbox: false
 
 
    - debug:
        msg: Test to get and release a sandbox with aws-nuke and IPA
 
    - include_role:
        name: infra-aws-get-sandbox
 
    - include_role:
        name: infra-aws-release-sandbox
      vars:
        nuke_sandbox: true