temper-tv/infra/Makefile

13 lines
206 B
Makefile

plan=out.plan
SHELL := /bin/bash
$(plan): *.tf
source set-env.sh && terraform plan -input=false -out $(plan)
push: build
source set-env.sh && terraform apply $(plan)
.PHONY: build push create-bucket