temper-tv/infra/Makefile

13 lines
206 B
Makefile
Raw Normal View History

2023-10-01 21:30:15 +00:00
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