From 0d29a1b84eddb2264443efb7794a2f4b56f755bf Mon Sep 17 00:00:00 2001 From: Jordan Ramos Date: Wed, 13 May 2026 07:56:03 -0600 Subject: [PATCH] Document IVANTI_MANAGED_BUS env var in .env.example, reference manual, and API docs --- backend/.env.example | 4 ++++ docs/api/ivanti-api-reference.md | 1 + docs/guides/full-reference-manual.md | 4 ++++ 3 files changed, 9 insertions(+) diff --git a/backend/.env.example b/backend/.env.example index bc4714a..2700bcc 100644 --- a/backend/.env.example +++ b/backend/.env.example @@ -22,6 +22,10 @@ IVANTI_LAST_NAME= # Users see only their assigned teams' findings (filtered at query time). # Default if unset: NTS-AEO-ACCESS-ENG,NTS-AEO-STEAM IVANTI_BU_FILTER=NTS-AEO-ACCESS-ENG,NTS-AEO-STEAM +# Comma-separated list of BUs considered "managed" for drift classification. +# Findings leaving these BUs are classified as bu_reassignment in the archive. +# Default if unset: NTS-AEO-ACCESS-ENG,NTS-AEO-STEAM +IVANTI_MANAGED_BUS=NTS-AEO-ACCESS-ENG,NTS-AEO-STEAM # Set to true if behind Charter's SSL inspection proxy (replicates Python verify=False) IVANTI_SKIP_TLS=false diff --git a/docs/api/ivanti-api-reference.md b/docs/api/ivanti-api-reference.md index 47738fe..ea9f36d 100644 --- a/docs/api/ivanti-api-reference.md +++ b/docs/api/ivanti-api-reference.md @@ -192,3 +192,4 @@ The `/workflowBatch/falsePositive/request` create endpoint returns only `{ id: < | `IVANTI_SKIP_TLS` | `false` | Set `true` to skip TLS verification | | `IVANTI_FIRST_NAME` | — | Used for workflow search filter (sync) | | `IVANTI_LAST_NAME` | — | Used for workflow search filter (sync) | +| `IVANTI_MANAGED_BUS` | `NTS-AEO-ACCESS-ENG,NTS-AEO-STEAM` | Comma-separated list of BUs considered "managed" for archive drift classification. Findings leaving these BUs are classified as bu_reassignment. | diff --git a/docs/guides/full-reference-manual.md b/docs/guides/full-reference-manual.md index a5281a3..c32fa2a 100644 --- a/docs/guides/full-reference-manual.md +++ b/docs/guides/full-reference-manual.md @@ -182,6 +182,10 @@ IVANTI_FIRST_NAME= IVANTI_LAST_NAME= # Set to 'true' if your network has SSL inspection / self-signed certs IVANTI_SKIP_TLS=false +# Comma-separated list of BUs considered "managed" for archive drift classification. +# Findings leaving these BUs are classified as bu_reassignment. +# Default if unset: NTS-AEO-ACCESS-ENG,NTS-AEO-STEAM +IVANTI_MANAGED_BUS=NTS-AEO-ACCESS-ENG,NTS-AEO-STEAM # Jira Data Center REST API (required for Jira Tickets page) # VPN or Charter Network connection required for all Jira instances.