20 lines
210 B
Makefile
20 lines
210 B
Makefile
.PHONY: all
|
|
all: init fmt validate
|
|
|
|
.PHONY: init
|
|
init:
|
|
terraform init
|
|
|
|
.PHONY: fmt
|
|
fmt: init
|
|
terraform fmt
|
|
|
|
.PHONY: validate
|
|
validate: init fmt
|
|
terraform validate
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
$(RM) -r .terraform
|
|
|