16 lines
212 B
Makefile
16 lines
212 B
Makefile
MANDATORY = $(shell printenv MANDATORY) TF_FLAGS
|
|
|
|
# tf
|
|
#
|
|
# deploys via tf apply
|
|
#
|
|
start-tf:
|
|
ifdef TF_TARGET
|
|
terraform apply $(TF_FLAGS) -t $(TF_TARGET)
|
|
else
|
|
terraform apply $(TF_FLAGS)
|
|
endif
|
|
|
|
|
|
pull-tf:
|
|
# nop
|