infra/infra/Makefile
2021-11-25 00:09:40 -08:00

19 lines
193 B
Makefile

plan=out.plan
build:
terraform plan -out $(plan)
test:
terraform validate
push:
terraform apply $(plan)
rip:
terraform destroy
clean:
rm -f $(plan)
.PHONY: test build clean push rip