khuedoan-homelab/cluster/Makefile
2021-08-20 19:31:04 +07:00

22 lines
327 B
Makefile

.POSIX:
.EXPORT_ALL_VARIABLES:
TF_IN_AUTOMATION = true
default: init apply
init:
terraform init -input=false -backend-config=backend.tfvars
plan:
terraform plan -input=false -out=/tmp/tfplan
apply: plan
terraform apply -input=false /tmp/tfplan
destroy:
terraform destroy
lint:
terraform fmt -recursive -diff -check