We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 954dc0e commit d2a09eeCopy full SHA for d2a09ee
1 file changed
modules/aws/private-link/main.tf
@@ -30,6 +30,14 @@ locals {
30
cidr_blocks = data.aws_vpc.this.cidr_block_associations.*.cidr_block
31
description = "HTTPS to VPC"
32
}
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
+ }
41
egress_broker_tls = {
42
type = "egress"
43
protocol = "tcp"
0 commit comments