namespace StellaOps.Scanner.Surface.Secrets; /// /// Configuration options for the surface secrets subsystem. /// public sealed class SurfaceSecretsOptions { /// /// Gets or sets the logical component name requesting secrets. /// public string ComponentName { get; set; } = "Scanner.Worker"; /// /// Gets or sets the set of secret types that should be eagerly validated at startup. /// public ISet RequiredSecretTypes { get; } = new HashSet(StringComparer.OrdinalIgnoreCase); }