What is Cloud DNS?
high availability, low latency service for mapping domain names to IP addresses
What are key points of Cloud DNS?
What zone types are available for Cloud DNS?
How do you create a DNS managed zone via shell?
gcloud beta dns manage-zones create [ZONE NAME] —dns-name=[DNS SUFFIX] –visibility=[private|public]
How do you add a record to a DNS managed zone via shell?
You start a transaction, add the record then execute the transaction
gcloud dns record-sets transaction start –zone=[ZONE]
gcloud dns record-sets transaction add [IP or NAME] –name=[NAME] -ttl=[TTL] –type=[TYPE] –zone=[ZONE]
gcloud dns record-sets transaction execute –zone=[ZONE}