mirror of
https://github.com/apricote/home-cloud.git
synced 2026-01-13 13:01:03 +00:00
15 lines
183 B
Makefile
15 lines
183 B
Makefile
|
|
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
|