-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdns.tf
More file actions
169 lines (147 loc) · 4.69 KB
/
dns.tf
File metadata and controls
169 lines (147 loc) · 4.69 KB
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
/**
* Copyright 2021 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 {
parent_id = var.parent_folder != "" ? "folders/${var.parent_folder}" : "organizations/${var.org_id}"
}
data "google_active_folder" "common" {
display_name = "${var.folder_prefix}-common"
parent = local.parent_id
}
/******************************************
DNS Hub Project
*****************************************/
data "google_projects" "dns_hub" {
filter = "parent.id:${split("/", data.google_active_folder.common.name)[1]} labels.application_name=org-dns-hub lifecycleState=ACTIVE"
}
data "google_compute_network" "vpc_dns_hub" {
name = "vpc-c-dns-hub"
project = data.google_projects.dns_hub.projects[0].project_id
}
/******************************************
Default DNS Policy
*****************************************/
resource "google_dns_policy" "default_policy" {
project = var.project_id
name = "default-policy"
enable_inbound_forwarding = var.dns_enable_inbound_forwarding
enable_logging = var.dns_enable_logging
networks {
network_url = module.main.network_self_link
}
}
/******************************************
Restricted Google APIs DNS Zone & records.
*****************************************/
module "restricted_googleapis" {
source = "terraform-google-modules/cloud-dns/google"
version = "~> 4.2"
project_id = var.project_id
type = "private"
name = "dz-${var.environment_code}-shared-restricted-apis"
domain = "googleapis.com."
description = "Private DNS zone to configure restricted.googleapis.com"
private_visibility_config_networks = [
module.main.network_self_link
]
recordsets = [
{
name = "*"
type = "CNAME"
ttl = 300
records = ["restricted.googleapis.com."]
},
{
name = "restricted"
type = "A"
ttl = 300
records = ["199.36.153.4", "199.36.153.5", "199.36.153.6", "199.36.153.7"]
},
]
}
/******************************************
Restricted GCR DNS Zone & records.
*****************************************/
module "restricted_gcr" {
source = "terraform-google-modules/cloud-dns/google"
version = "~> 4.2"
project_id = var.project_id
type = "private"
name = "dz-${var.environment_code}-shared-restricted-gcr"
domain = "gcr.io."
description = "Private DNS zone to configure gcr.io"
private_visibility_config_networks = [
module.main.network_self_link
]
recordsets = [
{
name = "*"
type = "CNAME"
ttl = 300
records = ["gcr.io."]
},
{
name = ""
type = "A"
ttl = 300
records = ["199.36.153.4", "199.36.153.5", "199.36.153.6", "199.36.153.7"]
},
]
}
/**************************************************
Restricted Artifact Registry DNS Zone & records.
**************************************************/
module "restricted_pkg_dev" {
source = "terraform-google-modules/cloud-dns/google"
version = "~> 4.2"
project_id = var.project_id
type = "private"
name = "dz-${var.environment_code}-shared-restricted-pkg-dev"
domain = "pkg.dev."
description = "Private DNS zone to configure pkg.dev"
private_visibility_config_networks = [
module.main.network_self_link
]
recordsets = [
{
name = "*"
type = "CNAME"
ttl = 300
records = ["pkg.dev."]
},
{
name = ""
type = "A"
ttl = 300
records = ["199.36.153.4", "199.36.153.5", "199.36.153.6", "199.36.153.7"]
},
]
}
/******************************************
Creates DNS Peering to DNS HUB
*****************************************/
module "peering_zone" {
source = "terraform-google-modules/cloud-dns/google"
version = "~> 4.2"
project_id = var.project_id
type = "peering"
name = "dz-${var.environment_code}-shared-restricted-to-dns-hub"
domain = var.domain
description = "Private DNS peering zone."
private_visibility_config_networks = [
module.main.network_self_link
]
target_network = data.google_compute_network.vpc_dns_hub.self_link
}