19 lines
193 B
Makefile
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
|