From 1941cf91ef99320fc1f294862c950b0857d2dd81 Mon Sep 17 00:00:00 2001 From: dms1981 Date: Tue, 6 Feb 2024 13:47:33 +0000 Subject: [PATCH] `cortex-xsiam` account networking (#6140) * added application accounts to subnet sets * added application accounts to subnet sets and carried out some housekeeping --- environments-networks/hq-development.json | 5 +++-- environments-networks/hq-production.json | 5 +++-- policies/networking/expected.rego | 10 ++++++---- 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/environments-networks/hq-development.json b/environments-networks/hq-development.json index 761ee4bbf..3e381af85 100644 --- a/environments-networks/hq-development.json +++ b/environments-networks/hq-development.json @@ -4,9 +4,10 @@ "general": { "cidr": "10.26.48.0/21", "accounts": [ - "data-and-insights-wepi-development", "cdpt-chaps-development", - "cdpt-ifs-development" + "cdpt-ifs-development", + "cortex-xsiam-development", + "data-and-insights-wepi-development" ] } } diff --git a/environments-networks/hq-production.json b/environments-networks/hq-production.json index ab93db94b..0788892e1 100644 --- a/environments-networks/hq-production.json +++ b/environments-networks/hq-production.json @@ -4,9 +4,10 @@ "general": { "cidr": "10.27.32.0/21", "accounts": [ - "data-and-insights-wepi-production", "cdpt-chaps-production", - "cdpt-ifs-production" + "cdpt-ifs-production", + "cortex-xsiam-production", + "data-and-insights-wepi-production" ] } } diff --git a/policies/networking/expected.rego b/policies/networking/expected.rego index 328b442c9..6a1fd8c4f 100644 --- a/policies/networking/expected.rego +++ b/policies/networking/expected.rego @@ -185,9 +185,10 @@ expected := "general": { "cidr": "10.26.48.0/21", "accounts": [ - "data-and-insights-wepi-development", "cdpt-chaps-development", - "cdpt-ifs-development" + "cdpt-ifs-development", + "cortex-xsiam-development", + "data-and-insights-wepi-development" ] } }, @@ -203,9 +204,10 @@ expected := "general": { "cidr": "10.27.32.0/21", "accounts": [ - "data-and-insights-wepi-production", "cdpt-chaps-production", - "cdpt-ifs-production" + "cdpt-ifs-production", + "cortex-xsiam-production", + "data-and-insights-wepi-production" ] } },