Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Cloud DNS zone file?

I would like to obtain a zone file for my Google Cloud DNS entries, but I don't see an obvious way to ask for it on the web app page. Is it possible to do so? Thanks.

like image 759
Nicholas Geovanis Avatar asked Sep 02 '25 01:09

Nicholas Geovanis


1 Answers

Yes, it is possible, but you need to install the Google Cloud SDK https://cloud.google.com/sdk/downloads

Once you have that, it's a simple one liner in your terminal.

gcloud dns record-sets export yournewzonefile.txt --zone yourzonename --zone-file-format
like image 151
devhops Avatar answered Sep 06 '25 23:09

devhops