STAGE?=staging

export AWS_PROFILE=kadi

init:
	@echo "Running terraform init"
	terraform init

plan:
	@echo "Running terraform plan"
	terraform plan

apply:
	@echo "Running terraform apply"
	terraform apply
