terraform/10-pre-k8s/Makefile

12 lines
145 B
Makefile
Raw Normal View History

2024-08-04 16:16:53 +02:00
init:
terraform init
plan:
terraform plan -out tfplan
apply:plan
terraform apply tfplan
refresh:plan
terraform apply tfplan -refresh-only