Files
temper-tv/infra/Makefile
2023-10-01 14:30:15 -07:00

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