-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathmain.tf
More file actions
197 lines (191 loc) · 6.15 KB
/
Copy pathmain.tf
File metadata and controls
197 lines (191 loc) · 6.15 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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
/**
* Copyright 2024 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 {
_factory_rules_folder = try(pathexpand(var.factories_config.rules_folder), null)
# define list of rule files
_factory_rule_files = local._factory_rules_folder == null ? [] : [
for f in try(fileset(local._factory_rules_folder, "**/*.yaml"), []) :
"${local._factory_rules_folder}/${f}"
]
# decode rule files and account for optional attributes
_factory_rule_list = flatten([
for f in local._factory_rule_files : [
for direction, ruleset in coalesce(yamldecode(file(f)), tomap({})) : [
for name, rule in coalesce(ruleset, tomap({})) : {
name = name
deny = try(rule.deny, false)
rules = try(rule.rules, [{ protocol = "all", ports = null }])
description = try(rule.description, null)
destination_ranges = try(rule.destination_ranges, null)
direction = upper(direction)
disabled = try(rule.disabled, null)
enable_logging = try(rule.enable_logging, null)
priority = try(rule.priority, 1000)
source_ranges = try(rule.source_ranges, null)
sources = try(rule.sources, null)
targets = try(rule.targets, null)
use_service_accounts = try(rule.use_service_accounts, false)
}
]
]
])
_factory_rules = {
for r in local._factory_rule_list : r.name => r
if contains(["EGRESS", "INGRESS"], r.direction)
}
# TODO: deprecate once FAST does not need this anymore
_named_ranges = merge(
(
var.factories_config.cidr_tpl_file != null
? yamldecode(pathexpand(file(var.factories_config.cidr_tpl_file)))
: {}
),
var.named_ranges
)
_rules = merge(
local._factory_rules, local._rules_egress, local._rules_ingress
)
_rules_egress = {
for name, rule in merge(var.egress_rules) :
name => merge(rule, { direction = "EGRESS" })
}
_rules_ingress = {
for name, rule in merge(var.ingress_rules) :
name => merge(rule, { direction = "INGRESS" })
}
ctx = {
for k, v in var.context : k => {
for kk, vv in v : "${local.ctx_p}${k}:${kk}" => vv
}
}
ctx_p = "$"
network = lookup(local.ctx.networks, var.network, var.network)
network_name = reverse(split("/", local.network))[0]
project_id = lookup(local.ctx.project_ids, var.project_id, var.project_id)
# convert rules data to resource format and replace range template variables
rules = {
for name, rule in local._rules :
name => merge(rule, {
action = rule.deny == true ? "DENY" : "ALLOW"
destination_ranges = (
try(rule.destination_ranges, null) == null
? null
: distinct(flatten([
for range in rule.destination_ranges : try(
local.ctx.cidr_ranges_sets[range],
local._named_ranges[range],
range
)
]))
)
rules = { for k, v in rule.rules : k => v }
source_ranges = (
try(rule.source_ranges, null) == null
? null
: distinct(flatten([
for range in rule.source_ranges : try(
local.ctx.cidr_ranges_sets[range],
local._named_ranges[range],
range
)
]))
)
})
}
}
moved {
from = google_compute_firewall.custom-rules
to = google_compute_firewall.custom_rules
}
resource "google_compute_firewall" "custom_rules" {
for_each = local.rules
project = local.project_id
network = local.network
name = each.key
description = each.value.description
direction = each.value.direction
source_ranges = (
each.value.source_ranges == null
? (
each.value.direction == "INGRESS" && each.value.sources == null
? ["0.0.0.0/0"]
: null
)
: [
for r in each.value.source_ranges : lookup(local.ctx.cidr_ranges, r, r)
]
)
destination_ranges = (
each.value.destination_ranges == null
? (
each.value.direction == "EGRESS"
? ["0.0.0.0/0"]
: null
)
: [
for r in each.value.destination_ranges : lookup(local.ctx.cidr_ranges, r, r)
]
)
source_tags = (
each.value.use_service_accounts || each.value.direction == "EGRESS"
? null
: each.value.sources
)
source_service_accounts = (
each.value.use_service_accounts && each.value.direction == "INGRESS"
? (each.value.sources == null ? null : [
for s in each.value.sources : lookup(local.ctx.iam_principals, s, s)
])
: null
)
target_tags = (
!each.value.use_service_accounts ? each.value.targets : null
)
target_service_accounts = (
!each.value.use_service_accounts ? null : (
each.value.targets == null ? null : [
for s in each.value.targets : lookup(local.ctx.iam_principals, s, s)
])
)
disabled = each.value.disabled == true
priority = each.value.priority
dynamic "log_config" {
for_each = each.value.enable_logging == null ? [] : [""]
content {
metadata = (
try(each.value.enable_logging.include_metadata, null) == true
? "INCLUDE_ALL_METADATA"
: "EXCLUDE_ALL_METADATA"
)
}
}
dynamic "deny" {
for_each = { for k, v in each.value.rules : k => v if each.value.action == "DENY" }
iterator = rule
content {
protocol = rule.value.protocol
ports = try(rule.value.ports, [])
}
}
dynamic "allow" {
for_each = { for k, v in each.value.rules : k => v if each.value.action == "ALLOW" }
iterator = rule
content {
protocol = rule.value.protocol
ports = try(rule.value.ports, [])
}
}
}