15 references to ApiKey
Aspire.Dashboard (2)
Authentication\OtlpCompositeAuthenticationHandler.cs (1)
44
if (options.Otlp.AuthMode is OtlpAuthMode.
ApiKey
)
Configuration\ValidateDashboardOptions.cs (1)
85
case OtlpAuthMode.
ApiKey
:
Aspire.Dashboard.Tests (13)
Integration\OtlpGrpcServiceTests.cs (6)
54
config[DashboardConfigNames.DashboardOtlpAuthModeName.ConfigKey] = OtlpAuthMode.
ApiKey
.ToString();
76
config[DashboardConfigNames.DashboardOtlpAuthModeName.ConfigKey] = OtlpAuthMode.
ApiKey
.ToString();
103
config[DashboardConfigNames.DashboardOtlpAuthModeName.ConfigKey] = OtlpAuthMode.
ApiKey
.ToString();
131
config[DashboardConfigNames.DashboardOtlpAuthModeName.ConfigKey] = OtlpAuthMode.
ApiKey
.ToString();
170
["AuthMode"] = OtlpAuthMode.
ApiKey
.ToString(),
218
["AuthMode"] = OtlpAuthMode.
ApiKey
.ToString(),
Integration\OtlpHttpJsonTests.cs (2)
829
config[DashboardConfigNames.DashboardOtlpAuthModeName.ConfigKey] = OtlpAuthMode.
ApiKey
.ToString();
857
config[DashboardConfigNames.DashboardOtlpAuthModeName.ConfigKey] = OtlpAuthMode.
ApiKey
.ToString();
Integration\OtlpHttpServiceTests.cs (3)
115
config[DashboardConfigNames.DashboardOtlpAuthModeName.ConfigKey] = OtlpAuthMode.
ApiKey
.ToString();
139
config[DashboardConfigNames.DashboardOtlpAuthModeName.ConfigKey] = OtlpAuthMode.
ApiKey
.ToString();
167
config[DashboardConfigNames.DashboardOtlpAuthModeName.ConfigKey] = OtlpAuthMode.
ApiKey
.ToString();
Integration\StartupTests.cs (2)
339
initialData["Dashboard:Otlp:AuthMode"] = nameof(OtlpAuthMode.
ApiKey
);
347
Assert.Equal(OtlpAuthMode.
ApiKey
, app.DashboardOptionsMonitor.CurrentValue.Otlp.AuthMode);