From 9bd6cbd3e323f6c0fc3b45ad67144251fc415db6 Mon Sep 17 00:00:00 2001 From: shockrah Date: Thu, 5 Oct 2023 22:28:54 -0700 Subject: [PATCH] Fixing makefile --- infra/dns/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/infra/dns/Makefile b/infra/dns/Makefile index 507406e..cb42529 100644 --- a/infra/dns/Makefile +++ b/infra/dns/Makefile @@ -3,20 +3,20 @@ plan=out.plan SHELL := /bin/bash $(plan): *.tf - source secrets/set-env.sh && terraform plan -input=false -out $(plan) + source ../secrets/set-env.sh && terraform plan -input=false -out $(plan) push: build - source secrets/set-env.sh && terraform apply $(plan) + source ../secrets/set-env.sh && terraform apply $(plan) refresh: - source secrets/set-env.sh && terraform apply -refresh-only + source ../secrets/set-env.sh && terraform apply -refresh-only test: terraform validate rip: - source secrets/set-env.sh && terraform destroy + source ../secrets/set-env.sh && terraform destroy clean: rm -f $(plan)