terraform/10-pre-k8s/Makefile
2024-08-04 16:16:53 +02:00

11 lines
145 B
Makefile

init:
terraform init
plan:
terraform plan -out tfplan
apply:plan
terraform apply tfplan
refresh:plan
terraform apply tfplan -refresh-only