forked from GoogleCloudPlatform/cloud-foundation-fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
routes.tf
139 lines (131 loc) · 4.9 KB
/
routes.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
/**
* Copyright 2023 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.
*/
# tfdoc:file:description Route resources.
locals {
_googleapis_ranges = {
private = "199.36.153.8/30"
private-6 = "2600:2d00:2:2000::/64"
restricted = "199.36.153.4/30"
restricted-6 = "2600:2d00:2:1000::/64"
}
_googleapis_routes = {
for k, v in local._googleapis_ranges : "${k}-googleapis" => {
description = "Terraform-managed."
dest_range = v
next_hop = "default-internet-gateway"
next_hop_type = "gateway"
priority = 1000
tags = null
}
if(
var.vpc_create &&
lookup(coalesce(var.create_googleapis_routes, {}), k, false)
)
}
_routes = merge(local._googleapis_routes, coalesce(var.routes, {}))
routes = {
gateway = { for k, v in local._routes : k => v if v.next_hop_type == "gateway" }
ilb = { for k, v in local._routes : k => v if v.next_hop_type == "ilb" }
instance = { for k, v in local._routes : k => v if v.next_hop_type == "instance" }
ip = { for k, v in local._routes : k => v if v.next_hop_type == "ip" }
vpn_tunnel = { for k, v in local._routes : k => v if v.next_hop_type == "vpn_tunnel" }
}
}
resource "google_compute_route" "gateway" {
for_each = local.routes.gateway
project = var.project_id
network = local.network.name
name = "${var.name}-${each.key}"
description = each.value.description
dest_range = each.value.dest_range
priority = each.value.priority
tags = each.value.tags
next_hop_gateway = each.value.next_hop
}
resource "google_compute_route" "ilb" {
for_each = local.routes.ilb
project = var.project_id
network = local.network.name
name = "${var.name}-${each.key}"
description = each.value.description
dest_range = each.value.dest_range
priority = each.value.priority
tags = each.value.tags
next_hop_ilb = each.value.next_hop
}
resource "google_compute_route" "instance" {
for_each = local.routes.instance
project = var.project_id
network = local.network.name
name = "${var.name}-${each.key}"
description = each.value.description
dest_range = each.value.dest_range
priority = each.value.priority
tags = each.value.tags
next_hop_instance = each.value.next_hop
# not setting the instance zone will trigger a refresh
next_hop_instance_zone = regex("zones/([^/]+)/", each.value.next_hop)[0]
}
resource "google_compute_route" "ip" {
for_each = local.routes.ip
project = var.project_id
network = local.network.name
name = "${var.name}-${each.key}"
description = each.value.description
dest_range = each.value.dest_range
priority = each.value.priority
tags = each.value.tags
next_hop_ip = each.value.next_hop
}
resource "google_compute_route" "vpn_tunnel" {
for_each = local.routes.vpn_tunnel
project = var.project_id
network = local.network.name
name = "${var.name}-${each.key}"
description = each.value.description
dest_range = each.value.dest_range
priority = each.value.priority
tags = each.value.tags
next_hop_vpn_tunnel = each.value.next_hop
}
resource "google_network_connectivity_policy_based_route" "default" {
for_each = var.policy_based_routes
project = var.project_id
network = local.network.id
name = "${var.name}-${each.key}"
description = each.value.description
priority = each.value.priority
next_hop_other_routes = each.value.use_default_routing ? "DEFAULT_ROUTING" : null
next_hop_ilb_ip = each.value.use_default_routing ? null : each.value.next_hop_ilb_ip
filter {
protocol_version = "IPV4"
ip_protocol = each.value.filter.ip_protocol
dest_range = each.value.filter.dest_range
src_range = each.value.filter.src_range
}
dynamic "virtual_machine" {
for_each = each.value.target.tags != null ? [""] : []
content {
tags = each.value.target.tags
}
}
dynamic "interconnect_attachment" {
for_each = each.value.target.interconnect_attachment != null ? [""] : []
content {
region = each.value.target.interconnect_attachment
}
}
}