Complete the code to create a new managed zone in Cloud DNS.
gcloud dns managed-zones create [1] --dns-name="example.com." --description="My zone"
The managed zone name should be a unique identifier like example-zone.
Complete the code to add an A record to the managed zone.
gcloud dns record-sets transaction start --zone=[1]You must specify the correct managed zone name where the record will be added.
Fix the error in the command to add an A record for www.example.com pointing to 1.2.3.4.
gcloud dns record-sets transaction add 1.2.3.4 --name=[1] --ttl=300 --type=A --zone=example-zone
The DNS name must end with a dot to indicate it is a fully qualified domain name.
Fill both blanks to complete the commands to describe the pending transaction and then execute it.
gcloud dns record-sets transaction [1] --zone=example-zone gcloud dns record-sets transaction [2] --zone=example-zone
First, describe the transaction to preview changes, then execute to apply them.
Fill all three blanks to create a TXT record for domain verification.
gcloud dns record-sets transaction add "[1]" --name=[2] --ttl=[3] --type=TXT --zone=example-zone
The TXT record value must be quoted, the name must be the domain with a trailing dot, and TTL is usually 300 seconds.