Files
infra/infra/Makefile
T

19 lines
193 B
Makefile
Raw Normal View History

2021-11-25 00:09:40 -08:00
plan=out.plan
2021-11-24 20:58:26 -08:00
build:
2021-11-25 00:09:40 -08:00
terraform plan -out $(plan)
2021-11-24 20:58:26 -08:00
test:
terraform validate
2021-11-25 00:09:40 -08:00
push:
terraform apply $(plan)
rip:
terraform destroy
2021-11-24 20:58:26 -08:00
clean:
2021-11-25 00:09:40 -08:00
rm -f $(plan)
2021-11-24 20:58:26 -08:00
2021-11-25 00:09:40 -08:00
.PHONY: test build clean push rip