Skip to content

Commit

Permalink
Merge pull request #11 from JonasBK/patch-3
Browse files Browse the repository at this point in the history
Fix Get-AllAzureRMKeyVaults
  • Loading branch information
andyrobbins authored May 28, 2024
2 parents 1b08e25 + dde7272 commit 7dd4136
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions BARK.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3192,10 +3192,8 @@ Function Get-AllAzureRMKeyVaults {
-ContentType "application/json"
if ($Results.value) {
$KeyVaultObjects += $Results.value
} else {
$KeyVaultObjects += $Results
}
$uri = $Results.'@odata.nextlink'
$uri = $Results.nextlink
} until (!($uri))

$KeyVaultObjects
Expand Down

0 comments on commit 7dd4136

Please sign in to comment.