Tracking 6443 for kubectl

This commit is contained in:
shockrah 2024-01-17 21:06:25 -08:00
parent cb065d22f2
commit 3e149c43ef

View File

@ -1,6 +1,6 @@
# Inbound rules for web traffic
resource vultr_firewall_rule web_inbound {
for_each = toset([for port in [80, 443] : tostring(port) ])
for_each = toset([for port in [80, 443, 6443] : tostring(port) ])
firewall_group_id = vultr_kubernetes.athens.firewall_group_id
#firewall_group_id = vultr_firewall_group.cluster.id
protocol = "tcp"
@ -9,4 +9,3 @@ resource vultr_firewall_rule web_inbound {
subnet_size = 0
port = each.value
}