31 lines
No EOL
902 B
Bash
31 lines
No EOL
902 B
Bash
# How to update DNS records
|
|
# Valid values: [ cloudflare ] -- feel free to PR more
|
|
DNS_METHOD="cloudflare"
|
|
|
|
# Name servers to use for domain objects
|
|
DNS_NS="ns1.example.com,ns2.example.com"
|
|
|
|
# Cloudflare API Key, used if DNS_METHOD is set to "cloudflare"
|
|
# Doesn't support the email + account wide key format.
|
|
CLOUDFLARE_API_KEY=""
|
|
|
|
# PeeringDB API Key, used to lookup IXPs, ASNs, etc.
|
|
PEERINGDB_API_KEY=""
|
|
|
|
# RIPE DB maintainer details; use commas to separate multiple values
|
|
RIPE_MNT=""
|
|
RIPE_TECH_C=""
|
|
RIPE_ADMIN_C=""
|
|
RIPE_ZONE_C=""
|
|
# signing happens with PGP; md5 is too legacy for me
|
|
RIPE_PGP_KEY_ID=""
|
|
|
|
# The group of hosts considered primary to your network, i.e. the one to auto-deploy to if no flag is provided
|
|
DEFAULT_HOST_GROUP="default"
|
|
|
|
# User to SSH as for deployment
|
|
SSH_USER="root"
|
|
|
|
# Krill server URL and API token; provide the base URL, not the API URL
|
|
KRILL_URL=""
|
|
KRILL_TOKEN="" |