Add Azure Key Vault support and enhance credential handling in configuration data
This commit is contained in:
@@ -17,7 +17,10 @@ function Resolve-ConfigurationDataProviderSettingsPath {
|
||||
return (Join-Path -Path (Get-Location).Path -ChildPath $FileName)
|
||||
}
|
||||
|
||||
if((Test-Path -Path $SettingsPath -PathType Container) -or $SettingsPath.EndsWith("\") -or $SettingsPath.EndsWith("/")){
|
||||
if((Test-Path -Path $SettingsPath -PathType Container) -or
|
||||
$SettingsPath.EndsWith("\") -or
|
||||
$SettingsPath.EndsWith("/") -or
|
||||
[string]::IsNullOrWhiteSpace([System.IO.Path]::GetExtension($SettingsPath))){
|
||||
return (Join-Path -Path $SettingsPath -ChildPath $FileName)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user