Skip to content

Commit

Permalink
refactor: add private subnet cidr to ckproxy
Browse files Browse the repository at this point in the history
  • Loading branch information
DecFox committed Jan 16, 2025
1 parent e790e66 commit 8674058
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tf/environments/dev/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -425,17 +425,17 @@ module "ooni_clickhouse_proxy" {
from_port = 22,
to_port = 22,
protocol = "tcp",
cidr_blocks = ["0.0.0.0/0"],
cidr_blocks = module.network.vpc_subnet_private[*].cidr_block,
}, {
from_port = 80,
to_port = 80,
protocol = "tcp",
cidr_blocks = ["0.0.0.0/0"],
cidr_blocks = module.network.vpc_subnet_private[*].cidr_block,
}, {
from_port = 9000,
to_port = 9000,
protocol = "tcp",
cidr_blocks = ["0.0.0.0/0"],
cidr_blocks = module.network.vpc_subnet_private[*].cidr_block,
}]

egress_rules = [{
Expand Down

0 comments on commit 8674058

Please sign in to comment.