diff --git a/main.tf b/main.tf index 8e3f529..47c469f 100644 --- a/main.tf +++ b/main.tf @@ -67,6 +67,11 @@ module "shared_security_group" { # Customer API access configuration locals { api_customer_cidrs = { + newco_56 = { + cidr = "203.0.113.156/32" + name = "NewCo 56" + } + newco_55 = { cidr = "203.0.113.155/32" name = "NewCo 55" @@ -365,7 +370,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 = "alerts@example.com" }