Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions modules/aws/private-link/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,14 @@ locals {
cidr_blocks = data.aws_vpc.this.cidr_block_associations.*.cidr_block
description = "HTTPS to VPC"
}
egress_zk_tls = {
type = "egress"
protocol = "tcp"
from_port = 2181
to_port = 2181
cidr_blocks = data.aws_vpc.this.cidr_block_associations.*.cidr_block
description = "Zookeeper TLS to VPC"
}
egress_broker_tls = {
type = "egress"
protocol = "tcp"
Expand Down
Loading