Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,11 @@ module "shared_security_group" {
# Customer API access configuration
locals {
api_customer_cidrs = {
newco_9 = {
cidr = "203.0.113.109/32"
name = "NewCo 9"
}

newco_8 = {
cidr = "203.0.113.108/32"
name = "NewCo 8"
Expand Down Expand Up @@ -129,7 +134,7 @@ locals {
}
}

api_internal_cidr = "10.0.0.0/8"
api_internal_cidr = "10.0.0.0/16" # SECURITY HARDENING: Narrowed to VPC CIDR per audit findings
api_domain = "signals-demo-test.demo"
api_alert_email = "[email protected]"
}
Expand Down