13 lines
161 B
Makefile
13 lines
161 B
Makefile
|
.PHONY: force
|
||
|
|
||
|
packer-manifest.json:
|
||
|
packer build nginx.json
|
||
|
|
||
|
tmp/nginx.conf: tmp force
|
||
|
cd terraform && terraform apply -auto-approve
|
||
|
|
||
|
tmp:
|
||
|
mkdir tmp
|
||
|
|
||
|
force:
|