summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2024-07-03 23:00:38 +0300
committerPaul Buetow <paul@buetow.org>2024-07-03 23:00:38 +0300
commitcd4fec80fb930b53c73f1f3d9220fa3e6d958e6e (patch)
treefcefda7f8ca2a8406b3b75410811e3c61ee0e6b8
parent4953262e03e9849b672e2d514f85cd63dc5c6e4b (diff)
add EKS to the makefile
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 7db751d..6d3afcb 100644
--- a/Makefile
+++ b/Makefile
@@ -6,6 +6,7 @@ apply:
destroy:
cd org-buetow-ecs && terraform destroy -auto-approve
cd org-buetow-elb && terraform destroy -auto-approve
+ cd org-buetow-eks && terraform destroy -auto-approve
cd org-buetow-bastion && terraform destroy -auto-approve
sleep:
@echo 'Waiting for 2 hours.'
@@ -16,5 +17,6 @@ init:
cd org-buetow-bastion && terraform init
cd org-buetow-elb && terraform init
cd org-buetow-ecs && terraform init
+ cd org-buetow-eks && terraform init
recreate: destroy apply