18 lines
584 B
Bash
18 lines
584 B
Bash
# Target: GCP — the replica, on its own domain.
|
|
#
|
|
# The domain differs from AWS's on purpose: this target CREATES a DNS zone
|
|
# where aws reuses one, so a shared domain would create a second authoritative
|
|
# zone and break live DNS. The domain lives in estate/nrft.json, not here.
|
|
TARGET_NAME=gcp
|
|
CLOUD=gcp
|
|
REGION=us-central1
|
|
INSTANCE_TYPE=e2-small
|
|
|
|
GCP_PROJECT=
|
|
GCP_ZONE=us-central1-a
|
|
|
|
# Delegation order: create the zone and let it answer first, then set the
|
|
# nameservers at the registrar — it validates that they respond.
|
|
CERTBOT_IMAGE_VAR=CERTBOT_GCP_IMAGE
|
|
DNS_PROVIDER=google
|