-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.tf
148 lines (131 loc) · 4.08 KB
/
main.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
/**
* Copyright 2018 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
locals {
is_static_zone = var.type == "public" || var.type == "private"
}
resource "google_dns_managed_zone" "peering" {
count = var.type == "peering" ? 1 : 0
provider = google-beta
project = var.project_id
name = var.name
dns_name = var.domain
description = var.description
labels = var.labels
visibility = "private"
private_visibility_config {
dynamic "networks" {
for_each = var.private_visibility_config_networks
content {
network_url = networks.value
}
}
}
peering_config {
target_network {
network_url = var.target_network
}
}
}
resource "google_dns_managed_zone" "forwarding" {
count = var.type == "forwarding" ? 1 : 0
provider = google-beta
project = var.project_id
name = var.name
dns_name = var.domain
description = var.description
labels = var.labels
visibility = "private"
private_visibility_config {
dynamic "networks" {
for_each = var.private_visibility_config_networks
content {
network_url = networks.value
}
}
}
forwarding_config {
dynamic "target_name_servers" {
for_each = var.target_name_server_addresses
content {
ipv4_address = target_name_servers.value
}
}
}
}
resource "google_dns_managed_zone" "private" {
count = var.type == "private" ? 1 : 0
project = var.project_id
name = var.name
dns_name = var.domain
description = var.description
labels = var.labels
visibility = "private"
private_visibility_config {
dynamic "networks" {
for_each = var.private_visibility_config_networks
content {
network_url = networks.value
}
}
}
}
resource "google_dns_managed_zone" "public" {
count = var.type == "public" ? 1 : 0
project = var.project_id
name = var.name
dns_name = var.domain
description = var.description
labels = var.labels
visibility = "public"
dynamic "dnssec_config" {
for_each = var.dnssec_config == {} ? [] : list(var.dnssec_config)
iterator = config
content {
kind = lookup(config.value, "kind", "dns#managedZoneDnsSecConfig")
non_existence = lookup(config.value, "non_existence", "nsec3")
state = lookup(config.value, "state", "off")
default_key_specs {
algorithm = lookup(var.default_key_specs_key, "algorithm", "rsasha256")
key_length = lookup(var.default_key_specs_key, "key_length", 2048)
key_type = lookup(var.default_key_specs_key, "key_type", "keySigning")
kind = lookup(var.default_key_specs_key, "kind", "dns#dnsKeySpec")
}
default_key_specs {
algorithm = lookup(var.default_key_specs_zone, "algorithm", "rsasha256")
key_length = lookup(var.default_key_specs_zone, "key_length", 1024)
key_type = lookup(var.default_key_specs_zone, "key_type", "zoneSigning")
kind = lookup(var.default_key_specs_zone, "kind", "dns#dnsKeySpec")
}
}
}
}
resource "google_dns_record_set" "cloud-static-records" {
project = var.project_id
managed_zone = var.name
for_each = { for record in var.recordsets : join("/", [record.name, record.type]) => record }
name = (
each.value.name != "" ?
"${each.value.name}.${var.domain}" :
var.domain
)
type = each.value.type
ttl = each.value.ttl
rrdatas = each.value.records
depends_on = [
google_dns_managed_zone.private,
google_dns_managed_zone.public,
]
}