Skip to content

Commit d2a09ee

Browse files
authored
fix: Add global zk required port 2181 to SG (#148)
1 parent 954dc0e commit d2a09ee

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

modules/aws/private-link/main.tf

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,14 @@ locals {
3030
cidr_blocks = data.aws_vpc.this.cidr_block_associations.*.cidr_block
3131
description = "HTTPS to VPC"
3232
}
33+
egress_zk_tls = {
34+
type = "egress"
35+
protocol = "tcp"
36+
from_port = 2181
37+
to_port = 2181
38+
cidr_blocks = data.aws_vpc.this.cidr_block_associations.*.cidr_block
39+
description = "Zookeeper TLS to VPC"
40+
}
3341
egress_broker_tls = {
3442
type = "egress"
3543
protocol = "tcp"

0 commit comments

Comments
 (0)