From 9662a93606dec160e391ad5a148ed98474c581dc Mon Sep 17 00:00:00 2001 From: Platform Automation Date: Thu, 9 Jul 2026 15:52:21 +0000 Subject: [PATCH] security: narrow internal ingress CIDR (JIRA-4521) --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index f6f72cd..b265674 100644 --- a/main.tf +++ b/main.tf @@ -89,7 +89,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 (JIRA-4521) api_domain = "signals-demo-test.demo" api_alert_email = "alerts@example.com" }