Skip to content

Commit

Permalink
Merge pull request #5549 from ministryofjustice/ifs-sec-revisions
Browse files Browse the repository at this point in the history
restrict db access, ecs, cluster & bastion
  • Loading branch information
roncitrus authored Apr 5, 2024
2 parents 039529f + 828032f commit e3824e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/environments/cdpt-ifs/database.tf
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ resource "aws_security_group" "db" {
from_port = 1433
to_port = 1433
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
cidr_blocks = [data.aws_vpc.shared.cidr_block]
}
egress {
from_port = 0
Expand Down

0 comments on commit e3824e0

Please sign in to comment.