28 lines
901 B
C#
28 lines
901 B
C#
namespace StellaOps.Auth.Abstractions;
|
|
|
|
/// <summary>
|
|
/// Canonical identifiers for StellaOps service principals.
|
|
/// </summary>
|
|
public static class StellaOpsServiceIdentities
|
|
{
|
|
/// <summary>
|
|
/// Service identity used by Policy Engine when materialising effective findings.
|
|
/// </summary>
|
|
public const string PolicyEngine = "policy-engine";
|
|
|
|
/// <summary>
|
|
/// Service identity used by Cartographer when constructing and maintaining graph projections.
|
|
/// </summary>
|
|
public const string Cartographer = "cartographer";
|
|
|
|
/// <summary>
|
|
/// Service identity used by Vuln Explorer when issuing scoped permalink requests.
|
|
/// </summary>
|
|
public const string VulnExplorer = "vuln-explorer";
|
|
|
|
/// <summary>
|
|
/// Service identity used by Signals components when managing reachability facts.
|
|
/// </summary>
|
|
public const string Signals = "signals";
|
|
}
|