home-cloud/terraform_provider_test/Makefile

15 lines
183 B
Makefile
Raw Normal View History

2019-05-12 20:57:52 +02:00
TF=terraform
TFFLAGS=-var-file=credentials.tfvars
apply: init
$(TF) apply $(TFFLAGS)
plan: init
$(TF) plan $(TFFLAGS)
destroy: init
$(TF) destroy $(TFFLAGS)
init:
$(TF) init