khuedoan-homelab/infra/Makefile
2021-05-23 11:56:05 +07:00

19 lines
250 B
Makefile

.POSIX:
.EXPORT_ALL_VARIABLES:
TF_IN_AUTOMATION = true
default: init plan apply
init:
terraform init -input=false
plan:
terraform plan -input=false -out=/tmp/tfplan
apply:
terraform apply -input=false /tmp/tfplan
destroy:
terraform destroy