15 lines
368 B
PowerShell
15 lines
368 B
PowerShell
function Get-ConfigurationDataSecretProviderName {
|
|
[CmdletBinding()]
|
|
Param()
|
|
|
|
if($null -eq $script:ConfigurationDataSecretProviders){
|
|
$script:ConfigurationDataSecretProviders = @{}
|
|
}
|
|
|
|
return @(
|
|
$script:ConfigurationDataSecretProviders.Values |
|
|
Sort-Object -Property Name |
|
|
ForEach-Object { $_.Name }
|
|
)
|
|
}
|