Private/Spamfilter/Get-SpamfilterCredential.ps1
function Get-SpamfilterCredential() { # Start by connecting to our Azure Key Vault. $AzContext = Get-AzContext if (!$AzContext -or $AzContext.Tenant.Id -ne $PartnerTenantId) { try { Write-Host "Please log in to Azure with your @jlhosting.dk account. A browser window has been opened." -ForegroundColor Yellow Connect-AzAccount -Tenant $PartnerTenantId -SubscriptionName $SubscriptionName | Out-Null } catch { Write-Error "Failed to connect to Azure. Please make sure you have the Az module installed." } } try { # Retreive all required values from Azure Key Vault $SpamfilterPassword = (Get-AzKeyVaultSecret -VaultName $KeyVaultName -Name "spamfilterpassword").SecretValue $SpamfilterCredential = New-Object System.Management.Automation.PSCredential("jyskit", $SpamfilterPassword) } catch { Write-Error "Failed to connect to Azure Key Vault and retreive secrets: $_" } return $SpamfilterCredential } |