-
Notifications
You must be signed in to change notification settings - Fork 7
/
main.tf
46 lines (40 loc) · 1.64 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
##############################################################################
# Create ACL Rules For Zone
##############################################################################
locals {
allow_rules = flatten([
for cidr in local.control_plane_ips[var.region]:
[
{
name = "allow-inbound-control-pane-${index(local.control_plane_ips[var.region], cidr) + 1}"
action = "allow"
direction = "inbound"
destination = "0.0.0.0/0"
source = cidr
tcp = null
udp = null
icmp = null
},
# ACLs by default have 50 max rules, outbound rules are commented out
# {
# name = "allow-outbound-control-pane-${index(local.control_plane_ips[var.region], cidr) + 1}"
# action = "allow"
# direction = "outbound"
# destination = cidr
# source = "0.0.0.0/0"
# tcp = null
# udp = null
# icmp = null
# }
]
])
}
##############################################################################
##############################################################################
# Output ACL Rules
##############################################################################
output rules {
description = "List of rules for control plane IP for a region"
value = local.allow_rules
}
##############################################################################