-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtaskfile.yaml
60 lines (54 loc) · 1.04 KB
/
taskfile.yaml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
version: '3'
tasks:
apply-00:
dir: 00_foundations
cmds:
- terraform apply -auto-approve
silent: true
apply-10:
dir: 10_platform
cmds:
- terraform apply -auto-approve
silent: true
apply-15:
dir: 15_platform
cmds:
- terraform apply -auto-approve
silent: true
apply-100:
dir: 100_app
cmds:
- terraform apply -auto-approve
silent: true
destroy-00:
dir: 00_foundations
cmds:
- terraform destroy -auto-approve
silent: true
destroy-10:
dir: 10_platform
cmds:
- terraform destroy -auto-approve
silent: true
destroy-15:
dir: 15_platform
cmds:
- terraform destroy -auto-approve
silent: true
destroy-100:
dir: 100_app
cmds:
- terraform destroy -auto-approve
silent: true
apply-all:
cmds:
- task: apply-00
- task: apply-10
- task: apply-15
- task: apply-100
destroy-all:
cmds:
- task: destroy-100
- task: destroy-15
- task: destroy-10
- task: destroy-00