2016-05-27 00:38:17 +02:00
|
|
|
#!/bin/sh
|
|
|
|
set -ue
|
|
|
|
|
2021-04-14 17:20:16 +02:00
|
|
|
# Imports a zone file into Google Cloud DNS
|
2016-05-27 00:38:17 +02:00
|
|
|
readonly ZONE="${1}"
|
2021-04-14 17:20:16 +02:00
|
|
|
readonly FILE="${2}"
|
2016-05-27 00:38:17 +02:00
|
|
|
|
2021-04-14 17:20:16 +02:00
|
|
|
gcloud dns record-sets import "${FILE}" \
|
2016-05-27 00:38:17 +02:00
|
|
|
--project composite-watch-759 \
|
|
|
|
--zone-file-format \
|
|
|
|
--delete-all-existing \
|
|
|
|
--zone "${ZONE}"
|