14 references to RadiusSecretStoreScope
Aspire.Hosting.Radius (13)
Publishing\RadiusInfrastructureBuilder.cs (4)
593if (store.Scope == RadiusSecretStoreScope.Application && legacyAppConstruct is not null) 1927(s.Scope == RadiusSecretStoreScope.Environment && ReferenceEquals(s.OwningEnvironment, _environment)) 1928|| s.Scope == RadiusSecretStoreScope.Application); 1955if (store.Scope == RadiusSecretStoreScope.Application && legacyAppConstruct is not null)
Publishing\SealedSecretApplyStep.cs (1)
202.Where(s => s.Scope == RadiusSecretStoreScope.Application || ReferenceEquals(s.OwningEnvironment, _environment))
Secrets\RadiusSecretStoreExtensions.cs (2)
64var resource = new RadiusSecretStoreResource(name, type, RadiusSecretStoreScope.Application); 113var resource = new RadiusSecretStoreResource(name, type, RadiusSecretStoreScope.Environment)
Secrets\RadiusSecretStoreResource.cs (2)
36internal RadiusSecretStoreResource(string name, RadiusSecretStoreType type, RadiusSecretStoreScope scope) 47internal RadiusSecretStoreScope Scope { get; }
Secrets\RadiusSecretStoreValidation.cs (4)
75.Where(static s => s.Scope == RadiusSecretStoreScope.Application) 202if (store.Scope == RadiusSecretStoreScope.Application && 329if (store.Scope == RadiusSecretStoreScope.Application && 355if (store.Scope == RadiusSecretStoreScope.Application)
Aspire.Hosting.Radius.Tests (1)
Secrets\AddRadiusSecretStoreTests.cs (1)
47Assert.Equal(RadiusSecretStoreScope.Environment, store.Scope);