-
Notifications
You must be signed in to change notification settings - Fork 227
Purge Key Vaults after deleting resource group #1894
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
4c091ac
Purge Key Vaults after deleting resource group
heaths aeb8200
Resolve PR feedback
heaths 0469c84
Purge Key Vaults and Managed HSMs
heaths 3be37c7
Clean up all purgeable KVs and MHSMs
heaths 89222c9
Ignore null/empty purgeable resources
heaths 7509b4d
Resolve PR feedback
heaths af25ce4
Resolve PR feedback
heaths 97e9076
Fix logging, process each item when collection piped
heaths File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,101 @@ | ||
| # Add 'AzsdkResourceType' member to outputs since actual output types have changed over the years. | ||
|
|
||
| function Get-PurgeableGroupResources { | ||
| param ( | ||
| [Parameter(Mandatory=$true, Position=0)] | ||
| [string] $ResourceGroupName | ||
| ) | ||
|
|
||
| # Get any Key Vaults that will be deleted so they can be purged later if soft delete is enabled. | ||
| Get-AzKeyVault @PSBoundParameters | ForEach-Object { | ||
| # Enumerating vaults from a resource group does not return all properties we required. | ||
| Get-AzKeyVault -VaultName $_.VaultName | Where-Object { $_.EnableSoftDelete } ` | ||
| | Add-Member -MemberType NoteProperty -Name AzsdkResourceType -Value 'Key Vault' -PassThru | ||
| } | ||
|
|
||
| # Get any Managed HSMs in the resource group, for which soft delete cannot be disabled. | ||
| Get-AzKeyVaultManagedHsm @PSBoundParameters ` | ||
| | Add-Member -MemberType NoteProperty -Name AzsdkResourceType -Value 'Managed HSM' -PassThru | ||
| } | ||
|
|
||
| function Get-PurgeableResources { | ||
| $subscriptionId = (Get-AzContext).Subscription.Id | ||
|
|
||
| # Get deleted Key Vaults for the current subscription. | ||
| Get-AzKeyVault -InRemovedState ` | ||
| | Add-Member -MemberType NoteProperty -Name AzsdkResourceType -Value 'Key Vault' -PassThru | ||
|
|
||
| # Get deleted Managed HSMs for the current subscription. | ||
| $response = Invoke-AzRestMethod -Method GET -Path "/subscriptions/$subscriptionId/providers/Microsoft.KeyVault/deletedManagedHSMs?api-version=2021-04-01-preview" -ErrorAction Ignore | ||
| if ($response.StatusCode -ge 200 -and $response.StatusCode -lt 300 -and $response.Content) { | ||
| $content = $response.Content | ConvertFrom-Json | ||
| foreach ($r in $content.value) { | ||
| [pscustomobject] @{ | ||
| AzsdkResourceType = 'Managed HSM' | ||
| Id = $r.id | ||
| Name = $r.name | ||
| Location = $r.properties.location | ||
| DeletionDate = $r.properties.deletionDate -as [DateTime] | ||
| ScheduledPurgeDate = $r.properties.scheduledPurgeDate -as [DateTime] | ||
| EnablePurgeProtection = $r.properties.purgeProtectionEnabled | ||
| } | ||
| } | ||
| } | ||
| } | ||
|
|
||
| # A filter differs from a function by teating body as -process {} instead of -end {}. | ||
| # This allows you to pipe a collection and process each item in the collection. | ||
| filter Remove-PurgeableResources { | ||
| param ( | ||
| [Parameter(Position=0, ValueFromPipeline=$true)] | ||
| [object[]] $Resource | ||
| ) | ||
|
|
||
| if (!$Resource) { | ||
| return | ||
| } | ||
|
|
||
| $subscriptionId = (Get-AzContext).Subscription.Id | ||
|
|
||
| foreach ($r in $Resource) { | ||
| switch ($r.AzsdkResourceType) { | ||
| 'Key Vault' { | ||
| Log "Attempting to purge $($r.AzsdkResourceType) '$($r.VaultName)'" | ||
| if ($r.EnablePurgeProtection) { | ||
| # We will try anyway but will ignore errors | ||
| Write-Warning "Key Vault '$($r.VaultName)' has purge protection enabled and may not be purged for $($r.SoftDeleteRetentionInDays) days" | ||
| } | ||
|
|
||
| Remove-AzKeyVault -VaultName $r.VaultName -Location $r.Location -InRemovedState -Force -ErrorAction Continue | ||
| } | ||
|
|
||
| 'Managed HSM' { | ||
| Log "Attempting to purge $($r.AzsdkResourceType) '$($r.Name)'" | ||
| if ($r.EnablePurgeProtection) { | ||
| # We will try anyway but will ignore errors | ||
| Write-Warning "Managed HSM '$($r.Name)' has purge protection enabled and may not be purged for $($r.SoftDeleteRetentionInDays) days" | ||
| } | ||
|
|
||
| $response = Invoke-AzRestMethod -Method POST -Path "/subscriptions/$subscriptionId/providers/Microsoft.KeyVault/locations/$($r.Location)/deletedManagedHSMs/$($r.Name)/purge?api-version=2021-04-01-preview" -ErrorAction Ignore | ||
| if ($response.StatusCode -ge 200 -and $response.StatusCode -lt 300) { | ||
| Write-Warning "Successfully requested that Managed HSM '$($r.Name)' be purged, but may take a few minutes before it is actually purged." | ||
| } elseif ($response.Content) { | ||
| $content = $response.Content | ConvertFrom-Json | ||
| if ($content.error) { | ||
| $err = $content.error | ||
| Write-Warning "Failed to deleted Managed HSM '$($r.Name)': ($($err.code)) $($err.message)" | ||
| } | ||
| } | ||
| } | ||
|
|
||
| default { | ||
| Write-Warning "Cannot purge resource type $($r.AzsdkResourceType). Add support to https://github.com/Azure/azure-sdk-tools/blob/main/eng/common/scripts/Helpers/Resource-Helpers.ps1." | ||
| } | ||
| } | ||
| } | ||
| } | ||
|
|
||
| # The Log function can be overridden by the sourcing script. | ||
| function Log($Message) { | ||
| Write-Host ('{0} - {1}' -f [DateTime]::Now.ToLongTimeString(), $Message) | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.