gcpdns¶
A Python module and CLI for managing zones and resource record sets on Google Cloud DNS
Features¶
Dump all project zones names in CSV and/or JSON format
Dump all zone resource record sets in CSV and/or JSON format
Create and delete zones via CLI or CSV
Create and delete resource record sets via CLI
Update DNS resource records for multiple zones in one project using one CSV file
Automatically split
TXT
records longer than 255 characters when publishingAutomatically add an ending
.
to records when needed
CLI¶
Usage: gcpdns [OPTIONS] CREDENTIAL_FILE COMMAND [ARGS]...
gcpdns: A CLI for managing zones and resource record sets on Google Cloud
DNS.
Options:
--version Show the version and exit.
--verbose Enable verbose logging.
--help Show this message and exit.
Commands:
record Manage DNS resource record sets.
zone Manage DNS zones.
gcpdns record¶
Usage: gcpdns record [OPTIONS] COMMAND [ARGS]...
Manage DNS resource record sets.
Options:
--help Show this message and exit.
Commands:
create Create a resource record set (Data fields separated by |).
delete Delete a resource record set
dump Dump a list of DNS resource records.
update Create, replace, and delete resource record sets using a CSV file.
gcpdns record create¶
Usage: gcpdns record create [OPTIONS] NAME RECORD_TYPE DATA
Create a resource record set (Data fields separated by |).
Options:
-r, --replace Replace any conflicting resource record set
-t, --ttl seconds DNS Time to live (in seconds) [default: 300]
--help Show this message and exit.
gcpdns record delete¶
Usage: gcpdns record delete [OPTIONS] NAME RECORD_TYPE
Delete a resource record set
Options:
--yes Confirm the action without prompting.
--help Show this message and exit.
gcpdns record dump¶
Usage: gcpdns record dump [OPTIONS] ZONE
Dump a list of DNS resource records.
Options:
-f, --format [json|csv] Set the screen output format [default: json]
-o, --output FILE One or more output file paths that end in .csv or
.json (suppresses screen output).
--help Show this message and exit.
gcpdns record update¶
Usage: gcpdns record update [OPTIONS] CSV_FILE_PATH
Create, replace, and delete resource record sets using a CSV file.
Options:
--ignore-errors Continue processing the CSV when errors occur.
--help Show this message and exit.
gcpdns zone¶
Manage DNS zones.
Options:
--help Show this message and exit.
Commands:
create Create a DNS zone.
delete Delete a DNS zone and all its resource records.
dump Dump a list of DNS zones.
update Create and delete zones using a CSV file.
gcpdns zone create¶
Usage: gcpdns zone create [OPTIONS] DNS_NAME
Create a DNS zone.
Options:
--gcp_name TEXT Set the zone's GCP name.
--description TEXT Set the zone's description.
--help Show this message and exit.
gcpdns zone delete¶
Usage: gcpdns zone delete [OPTIONS] NAME
Delete a DNS zone and all its resource records.
Options:
--yes Confirm the action without prompting.
--help Show this message and exit.
gcpdns zone dump¶
Usage: gcpdns zone dump [OPTIONS]
Dump a list of DNS zones.
Options:
-f, --format [json|csv] Set the screen output format [default: json]
-o, --output FILE One or more output file paths that end in .csv or
.json (suppresses screen output).
--help Show this message and exit.
gcpdns zone update¶
Usage: gcpdns zone update [OPTIONS] CSV_FILE_PATH
Create and delete zones using a CSV file.
Options:
--ignore-errors Continue processing the CSV when errors occur.
--help Show this message and exit.
Setup¶
To use gcpdns
, you’ll need a separate service account credentials JSON
file for each GCP project that you want to work with.
Ensure that the Service Account has the proper permissions to edit DNS (e.g. the DNS Administrator role) in the project.
Zone CSV fields¶
action
create
- Creates a zonedelete
- Deletes a zone
dns_name
- The zone’s DNS namegcp_name
- The zone’s name in GCP (optional)description
- The zone’s description (optional)
Record CSV fields¶
action
create
- Creates a resource record setreplace
- The same ascreate
, but will replace an existing resource record set with the samename
andrecord_type
(if it exists)delete
- Deletes a resource record set
name
- The record set name (i.e. the Fully-Qualified Domain Name)record_type
- The DNS record typettl
- DNS time to live (in seconds)data
- DNS record data separated by|
Google domain registration¶
Although gcpdns
does not manage domain registration services,
and GCP Cloud DNS name servers can be used with any domain registrar,
Google Domains is recommended for its security and
enterprise-friendly features, including:
Many supported TLDs
Simple DNSSEC configuration
Warning
Google Domains uses a different set of Google name servers than GCP DNS. Make sure the domains are configured to use “custom name servers” that are listed when you click on the Registrar Setup link in the upper right of a DNS zone’s configuration page in the GCP Cloud DNS admin panel.
DNSSEC¶
Warning
It is strongly recommend you do not change your name servers while DNSSEC is enabled. If you do, your domain may not resolve.
gcpdns
does not manage DNSSEC, but DNSSEC can be configured using the GCP
Cloud DNS admin panel.
To set up DNSSEC on your GCP DNS zone:
Verify that your domain registrar supports DNSSEC (Google Domains does, as mentioned above).
Turn on DNSSEC in GCP DNS by by navigating to your list of DNS zones, and selecting
DNSSEC > On
for a particular zone.Click on the zone name.
Click on the Registrar Setup link in the upper right of the DNS zone’s configuration page.
Use the provided information to configure DNSSEC at your domain registrar. If you are using Google Domains as your domain registrar, this is done by completing the following steps:
Sign in to Google Domains.
Select the name of your domain.
Open the menu Menu.
Click DNS.
Scroll to “DNSSEC”.
Create an entry using the values from previous steps.
Python API¶
A Python module and CLI for managing zones and resource record sets on Google Cloud DNS
-
class
gcpdns.
DNSClient
(project=None, credentials=None, _http=None, client_info=None)[source]¶ An extended Google DNS client with helper functions
-
apply_record_sets_csv
(csv_file, ignore_errors=False)[source]¶ Apply a CSV of record set changes
The CSV fields are: -
action
create
- Creates a resource record setreplace
- Creates or replaces an existing record setdelete
- Deletes a resource record set
name
- The record set name (i.e. the Fully-Qualified Domain Name)record_type
- The DNS record typettl
- DNS time to live (in seconds)data
- DNS record data separated by|
- Parameters
csv_file – A file or file-like object
ignore_errors (bool) – Log errors instead of raising an exception
- Raises
-
apply_zones_csv
(csv_file, ignore_errors=False)[source]¶ Apply a CSV of zones
The CSV fields are: -
action
create
- Creates a zonedelete
- Deletes a zone
dns_name
- The zone’s DNS namegcp_name
- The zone’s name in GCP (optional)description
- The zone’s description (optional)
- Parameters
csv_file – A file or file-like object
ignore_errors (bool) – Log errors instead of raising an exception
- Raises
-
create_or_replace_record_set
(name, record_type, data, ttl=300, replace=False)[source]¶ Adds or replaces a DNS resource record set
- Parameters
name (str) – The DNS name (i.e. the fully-qualified domain name)
record_type (str) – The DNS record type
data – A list of resource record data strings,
a string of one or more resource records separated by | (or) –
ttl (int) – DNS time to live (in seconds)
replace (bool) – Replace existing record set if needed
- Raises
-
create_zone
(dns_name, name=None, description=None)[source]¶ Creates a DNS zone
- Parameters
dns_name (str) – The zone’s DNS name
name (str) – the zone’s GCP name
description (str) – A description of the zone
- Raises
-
delete_record_set
(name, record_type)[source]¶ Deletes a record set
- Parameters
name (str) – The DNS name (i.e. the fully-qualified domain name)
record_type (str) – The DNS record type
- Raises
-
delete_zone
(zone_name)[source]¶ Deletes a zone
- Parameters
zone_name – The zone’s DNS name of GCP name
Returns:
-
dump_records
(zone_name)[source]¶ Outputs all record sets for a given zone in JSON and CSV format
- Parameters
zone_name (str) – The zone name or DNS name
- Returns
A dictionary with a csv and json key
- Return type
dict
-
dump_zones
()[source]¶ Outputs all managed zones for the project in JSON and CSV format
- Returns
A dictionary with a csv and json key
- Return type
dict
-