mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-05 13:08:52 +07:00
19 lines
250 B
Makefile
19 lines
250 B
Makefile
.POSIX:
|
|
.EXPORT_ALL_VARIABLES:
|
|
|
|
TF_IN_AUTOMATION = true
|
|
|
|
default: init apply
|
|
|
|
init:
|
|
terraform init -input=false
|
|
|
|
plan:
|
|
terraform plan -input=false -out=/tmp/tfplan
|
|
|
|
apply: plan
|
|
terraform apply -input=false /tmp/tfplan
|
|
|
|
destroy:
|
|
terraform destroy
|