1 instantiation of RadiusSecretStoreConstruct
Aspire.Hosting.Radius (1)
Publishing\RadiusInfrastructureBuilder.cs (1)
1947var construct = new RadiusSecretStoreConstruct(identifier)
16 references to RadiusSecretStoreConstruct
Aspire.Hosting.Radius (16)
Publishing\BicepPostProcessor.cs (2)
89foreach (var resource in options.SecretStores) 366foreach (var store in options.SecretStores)
Publishing\Constructs\RadiusSecretStoreConstruct.cs (1)
106/// <summary>Initializes a new <see cref="RadiusSecretStoreConstruct"/> with the given Bicep identifier.</summary>
Publishing\RadiusInfrastructureBuilder.cs (12)
412Dictionary<RadiusSecretStoreConstruct, string> SecretStoreIds); 567IReadOnlyDictionary<string, RadiusSecretStoreConstruct> storeConstructs, 587if (!storeConstructs.TryGetValue(store.Name, out var construct)) 1932/// Emits one <see cref="RadiusSecretStoreConstruct"/> per declared store, scoped to the legacy 1936private Dictionary<string, RadiusSecretStoreConstruct> EmitSecretStores( 1942var storeConstructs = new Dictionary<string, RadiusSecretStoreConstruct>(StringComparer.Ordinal); 1947var construct = new RadiusSecretStoreConstruct(identifier) 1983IReadOnlyDictionary<string, RadiusSecretStoreConstruct> storeConstructs) 2058IReadOnlyDictionary<string, RadiusSecretStoreConstruct> storeConstructs) 2060if (storeConstructs.TryGetValue(store.Name, out var construct)) 2081private void PopulateInlineSecretStoreData(RadiusSecretStoreResource store, RadiusSecretStoreConstruct construct) 2114RadiusSecretStoreConstruct construct,
Publishing\RadiusInfrastructureOptions.cs (1)
78public List<RadiusSecretStoreConstruct> SecretStores { get; } = [];