26 lines
872 B
Plaintext
26 lines
872 B
Plaintext
export TF_VAR_pg_passwd := `pass pg.monotremata.xyz/terraform`
|
|
export TF_VAR_minio_root_user := "rilla"
|
|
export TF_VAR_minio_root_password := `pass minio.monotremata.xyz/rilla`
|
|
|
|
export LINODE_TOKEN := `pass linode.com/token`
|
|
export VULTR_API_KEY := `pass vultr.com/api_key`
|
|
export HETZNER_DNS_API_TOKEN := `pass hetzner.com/tokens/terraform`
|
|
|
|
export MINIO_ENDPOINT := "minio.monotremata.xyz:443"
|
|
export MINIO_USER := `pass minio.monotremata.xyz/terraform/access_key`
|
|
export MINIO_PASSWORD := `pass minio.monotremata.xyz/terraform/secret_key`
|
|
|
|
init:
|
|
terraform init \
|
|
-backend-config="access_key=$(pass minio.monotremata.xyz/terraform/access_key)" \
|
|
-backend-config="secret_key=$(pass minio.monotremata.xyz/terraform/secret_key)"
|
|
|
|
plan *ARGS:
|
|
terraform plan {{ARGS}}
|
|
|
|
apply *ARGS:
|
|
terraform apply {{ARGS}}
|
|
|
|
terraform *ARGS:
|
|
terraform {{ARGS}}
|