Public/Remove-BuildSecrets.ps1
function Remove-BuildSecrets { <# .SYNOPSIS Removes all variables of the specified key vault from the current environment .DESCRIPTION Removes all variables of the specified key vault from the current environment. The user has to login to azure first using "az login" Important: The - character will automatically be replaced with the _ character. .PARAMETER KeyVaultName The name of the key vault containing the environment .PARAMETER SubscriptionID Allows the user to specify a subscription id if required. if not specified, the default subscription will be used. #> [CmdletBinding()] param ( [Parameter(Mandatory = $true, Position = 1)] [String[]]$KeyVaultName, [Parameter(Mandatory = $false)] [String]$SubscriptionID ) # Select the appropriate subscription if ($SubscriptionID) { Invoke-Azcli -ArgumentList "account set -s $SubscriptionID" } $Results = Invoke-Azcli -ArgumentList "account show" if ($Results.state -ne 'Enabled') { throw "You must login and select a subscription" } # Get all secrets from specified vault's $Secrets = @() foreach ($Name in $KeyVaultName) { $Results = Invoke-Azcli -ArgumentList "keyvault show --name $Name" if ($Results.name -ne $Name) { throw "Key vault [$name] does not exists." } Write-Verbose "Removing Secrets from Vault [$Name]" $Results = Invoke-Azcli -ArgumentList "keyvault secret list --vault-name $Name" if ($Results.Count -lt 1) { Write-Verbose "No secrets found in vault [$Name]" } $Results = Invoke-Azcli -ArgumentList "keyvault secret list --vault-name $Name" $Secrets = @() foreach ($Result in $Results) { $Secrets += Split-Path $Result.id -Leaf } foreach ($Secret in $Secrets) { # Replace - with _ $Secret = $($Secret.Replace('-','_')) $var = Get-Item -Path Env:$Secret -ErrorAction SilentlyContinue if ($var) { # Set Environment Variable Remove-Item -Path Env:$Secret Write-Verbose "Getting secret [$Secret]" } else { Write-Output "Could not find secret [$Secret] in current environment" } } # Remove vault from list of loaded vaults if ($Script:Vaults -contains $Name) { $Script:Vaults.Remove($Name) } } } |