make-deploy/tf.mk

16 lines
178 B
Makefile
Raw Normal View History

2024-05-03 12:18:33 +00:00
MANDATORY-tf =
# 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