From 717f9f52fbb603b6ce2028836213f11cac3224f7 Mon Sep 17 00:00:00 2001 From: Platform Automation Date: Thu, 9 Jul 2026 16:51:56 +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" }