Skip to content

Commit f8dc520

Browse files
committed
NRL-1385 security fix
1 parent b873b7a commit f8dc520

File tree

1 file changed

+1
-1
lines changed
  • terraform/account-wide-infrastructure/modules/vpc

1 file changed

+1
-1
lines changed

terraform/account-wide-infrastructure/modules/vpc/vpc.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ resource "aws_security_group" "sg" {
5959
from_port = 3389
6060
to_port = 3389
6161
protocol = "tcp"
62-
cidr_blocks = ["0.0.0.0/0"]
62+
cidr_blocks = [var.vpc_public_subnets_cidr_block]
6363
ipv6_cidr_blocks = ["::/0"]
6464
}
6565

0 commit comments

Comments
 (0)