2021-10-04 13:06:02 +00:00
|
|
|
.PHONY: force
|
|
|
|
|
2021-10-04 17:29:59 +00:00
|
|
|
packer-manifest.json: nginx.json \
|
|
|
|
tmp/nginx.conf \
|
|
|
|
tmp/do.ini \
|
|
|
|
files/certbot-renew.service \
|
|
|
|
files/certbot-renew.timer \
|
|
|
|
scripts/dependencies.sh \
|
|
|
|
scripts/nginx.sh
|
2021-10-04 13:06:02 +00:00
|
|
|
packer build nginx.json
|
|
|
|
|
|
|
|
tmp/nginx.conf: tmp force
|
|
|
|
cd terraform && terraform apply -auto-approve
|
|
|
|
|
2021-10-04 17:29:59 +00:00
|
|
|
tmp/do.ini: templates/do.ini.template tmp
|
|
|
|
sigil -p -f templates/do.ini.template > tmp/do.ini
|
|
|
|
chmod 600 tmp/do.ini
|
|
|
|
|
2021-10-04 13:06:02 +00:00
|
|
|
tmp:
|
|
|
|
mkdir tmp
|
|
|
|
|
|
|
|
force:
|