-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tf
177 lines (158 loc) · 5.52 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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
/**
* Copyright 2020 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.
*/
/*
* Hub & Spoke Peering Transitivity with Gateway VMs
*/
locals {
stripped_vpc_name = replace(var.vpc_name, "vpc-", "")
routes = flatten([for region, ranges in var.regional_aggregates : [for range in ranges : { region = region, range = range }]])
}
module "service_account" {
source = "terraform-google-modules/service-accounts/google"
version = "~> 4.1"
project_id = var.project_id
names = ["transitivity-gw"]
project_roles = [
"${var.project_id}=>roles/logging.logWriter",
"${var.project_id}=>roles/monitoring.metricWriter",
]
}
module "templates" {
source = "terraform-google-modules/vm/google//modules/instance_template"
version = "~> 10.0"
for_each = toset(var.regions)
can_ip_forward = true
disk_size_gb = 10
name_prefix = "transitivity-gw-${each.key}"
network = var.vpc_name
project_id = var.project_id
region = each.key
service_account = {
email = module.service_account.email
scopes = ["cloud-platform"]
}
metadata = {
user-data = templatefile("${path.module}/assets/gw.yaml", { commands = var.commands })
block-project-ssh-keys = "true"
}
source_image = "cos-stable-93-16623-102-23"
source_image_project = "cos-cloud"
subnetwork = var.gw_subnets[each.key]
subnetwork_project = var.project_id
}
module "migs" {
source = "terraform-google-modules/vm/google//modules/mig"
version = "~> 10.0"
for_each = toset(var.regions)
project_id = var.project_id
region = each.key
target_size = 3
hostname = "transitivity-gw"
instance_template = module.templates[each.key].self_link
update_policy = [
{
max_surge_fixed = 4
max_surge_percent = null
instance_redistribution_type = "NONE"
max_unavailable_fixed = 4
max_unavailable_percent = null
min_ready_sec = 180
minimal_action = "RESTART"
type = "OPPORTUNISTIC"
replacement_method = "SUBSTITUTE"
}
]
}
module "ilbs" {
source = "GoogleCloudPlatform/lb-internal/google"
version = "~> 5.0"
for_each = toset(var.regions)
region = each.key
name = each.key
ports = null
all_ports = true
global_access = true
network = var.vpc_name
subnetwork = var.gw_subnets[each.key]
firewall_enable_logging = true
source_ip_ranges = flatten(values(var.regional_aggregates))
target_service_accounts = [module.service_account.email]
source_tags = null
target_tags = null
create_backend_firewall = false
backends = [
{ group = module.migs[each.key].instance_group, description = "" },
]
health_check = {
type = "tcp"
check_interval_sec = 5
healthy_threshold = 4
timeout_sec = 1
unhealthy_threshold = 5
response = null
proxy_header = "NONE"
port = 22
port_name = null
request = null
request_path = null
host = null
enable_log = var.health_check_enable_log
}
project = var.project_id
}
resource "google_compute_route" "routes" {
for_each = {
for route in local.routes : replace("ilb-${route.region}-${route.range}", "/[./]/", "-") => route
}
project = var.project_id
network = var.vpc_name
name = each.key
description = "Transitivity route for ${each.value.range} in ${each.value.region}"
dest_range = each.value.range
next_hop_ilb = module.ilbs[each.value.region].forwarding_rule
}
resource "google_compute_network_firewall_policy_rule" "allow_transtivity_ingress" {
rule_name = "fw-${local.stripped_vpc_name}-20000-i-a-all-all-all-transitivity"
project = var.project_id
firewall_policy = var.firewall_policy
priority = 20000
direction = "INGRESS"
action = "allow"
target_service_accounts = [module.service_account.email]
description = "Allow ingress from regional IP ranges."
match {
src_ip_ranges = flatten(values(var.regional_aggregates))
layer4_configs {
ip_protocol = "all"
}
}
}
resource "google_compute_network_firewall_policy_rule" "allow_transitivity_egress" {
rule_name = "fw-${local.stripped_vpc_name}-20001-e-a-all-all-all-transitivity"
project = var.project_id
firewall_policy = var.firewall_policy
priority = 20001
direction = "EGRESS"
action = "allow"
target_service_accounts = [module.service_account.email]
description = "Allow egress from regional IP ranges."
match {
dest_ip_ranges = flatten(values(var.regional_aggregates))
layer4_configs {
ip_protocol = "all"
}
}
}