Skip to content

Commit

Permalink
fix: ingress cidr for ssh and tcp
Browse files Browse the repository at this point in the history
  • Loading branch information
DecFox committed Jan 16, 2025
1 parent 8674058 commit 2ec647c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tf/environments/dev/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -425,12 +425,12 @@ module "ooni_clickhouse_proxy" {
from_port = 22,
to_port = 22,
protocol = "tcp",
cidr_blocks = module.network.vpc_subnet_private[*].cidr_block,
cidr_blocks = ["0.0.0.0/0"],
}, {
from_port = 80,
to_port = 80,
protocol = "tcp",
cidr_blocks = module.network.vpc_subnet_private[*].cidr_block,
cidr_blocks = ["0.0.0.0/0"],
}, {
from_port = 9000,
to_port = 9000,
Expand Down

0 comments on commit 2ec647c

Please sign in to comment.