Compare commits

..

No commits in common. "353d7265101812f945daa42ed52fe0df13d145de" and "8e1d242dbad82b0499c8c0656ef76a501d53835a" have entirely different histories.

View File

@ -1,20 +0,0 @@
.PHONY: init plan apply help
# Default target
help:
@echo "Available targets:"
@echo " init - Initialize Terraform"
@echo " plan - Plan Terraform changes"
@echo " apply - Apply Terraform changes"
init:
@echo "Sourcing environment and initializing Terraform..."
@source ./env && terraform init
plan:
@echo "Sourcing environment and planning Terraform changes..."
@source ./env && terraform plan
apply:
@echo "Sourcing environment and applying Terraform changes..."
@source ./env && terraform apply -auto-approve