homelab/terraform/makefile

17 lines
585 B
Makefile
Raw Normal View History

2024-02-10 09:40:04 +00:00
env := production
command ?= apply -auto-approve
2024-02-10 09:40:04 +00:00
deploy_vault:
ifneq (,$(wildcard ~/vaultUnseal/$(env)/rootkey))
VAULT_TOKEN=$(shell cat ~/vaultUnseal/$(env)/rootkey) terraform -chdir=vault $(command)
2024-02-10 09:40:04 +00:00
else
terraform -chdir=vault $(command)
2024-02-10 09:40:04 +00:00
endif
deploy_dns:
TF_VAR_powerDnsApiKey=$(shell vault kv get -field=API_KEY secrets/nomad/pdns) TF_VAR_hetznerApiKey=$(shell vault kv get -field=hdns_token secrets/hetzner) terraform -chdir=dns $(command)
2024-02-10 09:40:04 +00:00
deploy_cloud:
TF_VAR_hetznerApiKey=$(shell vault kv get -field=hdns_token secrets/hetzner) terraform -chdir=cloud $(command)
2024-02-10 09:40:04 +00:00