From 86ac26588f437a1b5698ddd717d3fc3aee71f9ce Mon Sep 17 00:00:00 2001 From: Platform Automation Date: Tue, 27 Jan 2026 22:56:53 +0000 Subject: [PATCH] security: narrow internal ingress CIDR (JIRA-4521) --- main.tf | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/main.tf b/main.tf index 13add7b..97321ea 100644 --- a/main.tf +++ b/main.tf @@ -67,6 +67,11 @@ module "shared_security_group" { # Customer API access configuration locals { api_customer_cidrs = { + newco_37 = { + cidr = "203.0.113.137/32" + name = "NewCo 37" + } + newco_36 = { cidr = "203.0.113.136/32" name = "NewCo 36" @@ -269,7 +274,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" }