Skip to content

Commit

Permalink
PLAT-8786: Add 1053 to node security group for vcluster's coredns (#262)
Browse files Browse the repository at this point in the history
  • Loading branch information
Secretions authored Aug 29, 2024
1 parent 792c0bd commit 343b7e6
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions modules/eks/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,22 @@ locals {
type = "ingress"
self = true
}
ingress_self_vcluster_coredns_tcp = {
description = "Node to node vcluster CoreDNS"
protocol = "tcp"
from_port = 1053
to_port = 1053
type = "ingress"
self = true
}
ingress_self_vcluster_coredns_udp = {
description = "Node to node vcluster CoreDNS"
protocol = "udp"
from_port = 1053
to_port = 1053
type = "ingress"
self = true
}
inter_node_traffic_in_80 = {
description = "Node to node http traffic"
protocol = "tcp"
Expand Down

0 comments on commit 343b7e6

Please sign in to comment.