blob: 7db751d1217b06bf795ad043976f47e55be91748 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
apply:
cd org-buetow-base && terraform apply -auto-approve
#cd org-buetow-bastion && terraform apply -auto-approve
cd org-buetow-elb && terraform apply -auto-approve
cd org-buetow-ecs && terraform apply -auto-approve
destroy:
cd org-buetow-ecs && terraform destroy -auto-approve
cd org-buetow-elb && terraform destroy -auto-approve
cd org-buetow-bastion && terraform destroy -auto-approve
sleep:
@echo 'Waiting for 2 hours.'
sleep 7200
for2h: apply sleep destroy
init:
cd org-buetow-base && terraform init
cd org-buetow-bastion && terraform init
cd org-buetow-elb && terraform init
cd org-buetow-ecs && terraform init
recreate: destroy apply
|