governance
    2026-04-13

    Sovereign Policy Guard

    Automated policy enforcement engine with OPA integration for infrastructure-as-code compliance.

    policy
    opa
    compliance
    governance

    Overview

    Policy Guard integrates with Open Policy Agent (OPA) to enforce compliance policies across all Aegis Sovereign resources. Policy bundles are stored in a connected Git repository and synced to the platform on push — the gitops.bundle.synced webhook fires on successful sync.

    Policy Center
    Policy Center — OPA/Rego policy bundles with pass/fail evaluation verdicts, violation drill-downs, and git sync.
    Policy Center
    Add Bundle dialog (opens when you click the button).
    Policy Center
    Detail panel (opens when you click a row).

    Policy Definitions

    Write Rego policies to enforce governance rules.

    bash
    1# policy/enforce_encryption.rego
    2package sovereign.policies
    3
    4default allow = false
    5
    6allow {
    7    input.resource.encryption == "aes256-gcm"
    8    input.resource.tls_version >= "1.3"
    9}
    Edit this page on GitHub