diff options
Diffstat (limited to 'gen/dns')
-rw-r--r-- | gen/dns/acme-1.machine.acme.corp.tf | 8 | ||||
-rw-r--r-- | gen/dns/acme-2.machine.acme.corp.tf | 8 | ||||
-rw-r--r-- | gen/dns/acme-3.machine.acme.corp.tf | 8 |
3 files changed, 24 insertions, 0 deletions
diff --git a/gen/dns/acme-1.machine.acme.corp.tf b/gen/dns/acme-1.machine.acme.corp.tf new file mode 100644 index 0000000..cb408cb --- /dev/null +++ b/gen/dns/acme-1.machine.acme.corp.tf @@ -0,0 +1,8 @@ +resource "google_dns_record_set" "acme-1.machine.acme.corp" { + name = "acme-1.machine.acme.corp" + managed_zone = "None" + type = "A" + ttl = 300 + + rrdatas = [None] +} diff --git a/gen/dns/acme-2.machine.acme.corp.tf b/gen/dns/acme-2.machine.acme.corp.tf new file mode 100644 index 0000000..9edfe76 --- /dev/null +++ b/gen/dns/acme-2.machine.acme.corp.tf @@ -0,0 +1,8 @@ +resource "google_dns_record_set" "acme-2.machine.acme.corp" { + name = "acme-2.machine.acme.corp" + managed_zone = "None" + type = "A" + ttl = 300 + + rrdatas = [None] +} diff --git a/gen/dns/acme-3.machine.acme.corp.tf b/gen/dns/acme-3.machine.acme.corp.tf new file mode 100644 index 0000000..940dbf2 --- /dev/null +++ b/gen/dns/acme-3.machine.acme.corp.tf @@ -0,0 +1,8 @@ +resource "google_dns_record_set" "acme-3.machine.acme.corp" { + name = "acme-3.machine.acme.corp" + managed_zone = "None" + type = "A" + ttl = 300 + + rrdatas = [None] +} |