Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ps_modules/AzPolicyLens.Discovery/AzPolicyLens.Discovery.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
RootModule = 'AzPolicyLens.Discovery.psm1'

# Version number of this module.
ModuleVersion = '2.2.0'
ModuleVersion = '2.2.1'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -112,8 +112,8 @@
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = '2.2.0 - May 2026
Version 2.2.0 Release
ReleaseNotes = '2.2.1 - May 2026
Version 2.2.1 Release
'

# Prerelease string of this module
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,8 @@ function getPolicyResourceAdoDirectoryPath {

Write-Verbose "[$(getCurrentUTCString)]: Resource type is '$ResourceType'." -Verbose:($PSCmdlet.MyInvocation.BoundParameters["Verbose"].IsPresent -eq $true)
if (!$getResourceTypeRoot) {
# Normalise ResourceId: remove any whitespace (spaces, tabs, newlines)
$ResourceId = $ResourceId -replace '\s+', ''
#determine the parent resource based on the resource ID
$parentResourceId = $ResourceId -replace '\/providers\/microsoft\.authorization\/policy(assignments|setdefinitions|definitions|exemptions)\/\S+', ''
if ($parentResourceId.length -gt 0) {
Expand Down
6 changes: 3 additions & 3 deletions ps_modules/AzPolicyLens.Wiki/AzPolicyLens.Wiki.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
RootModule = 'AzPolicyLens.Wiki.psm1'

# Version number of this module.
ModuleVersion = '2.2.0'
ModuleVersion = '2.2.1'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -132,8 +132,8 @@
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = '2.2.0 - May 2026
Version 2.2.0 Release
ReleaseNotes = '2.2.1 - May 2026
Version 2.2.1 Release
'

# Prerelease string of this module
Expand Down