Skip to content

Commit

Permalink
added hard-coded NACL rule allowing east/west between VPCs and new ra…
Browse files Browse the repository at this point in the history
…nge attached to core-shared-services (#6662)
  • Loading branch information
dms1981 authored Apr 2, 2024
1 parent 81f6d47 commit f5c061c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions terraform/modules/vpc-nacls/data.tf
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,24 @@ locals {
rule_number = 3000
to_port = null
},
allow_10-27-136-0_in = {
cidr_block = "10.27.136.0/21"
egress = false
from_port = null
protocol = "-1"
rule_action = "allow"
rule_number = 2010
to_port = null
},
allow_10-27-136-0_out = {
cidr_block = "10.27.136.0/21"
egress = true
from_port = null
protocol = "-1"
rule_action = "allow"
rule_number = 2010
to_port = null
},
deny_mp_cidr_out = {
cidr_block = "10.26.0.0/15"
egress = true
Expand Down

0 comments on commit f5c061c

Please sign in to comment.