namespace StellaOps.Auth.Abstractions; /// /// Canonical identifiers for StellaOps service principals. /// public static class StellaOpsServiceIdentities { /// /// Service identity used by Policy Engine when materialising effective findings. /// public const string PolicyEngine = "policy-engine"; /// /// Service identity used by Cartographer when constructing and maintaining graph projections. /// public const string Cartographer = "cartographer"; /// /// Service identity used by Vuln Explorer when issuing scoped permalink requests. /// public const string VulnExplorer = "vuln-explorer"; }