From f951e8f7817b9e4047f291076953ebd10d38c53f Mon Sep 17 00:00:00 2001 From: AlexanderSehr Date: Mon, 14 Aug 2023 23:47:19 +0200 Subject: [PATCH 1/2] Small fix to local refence resolution --- utilities/tools/Get-CrossReferencedModuleList.ps1 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/utilities/tools/Get-CrossReferencedModuleList.ps1 b/utilities/tools/Get-CrossReferencedModuleList.ps1 index 365171d64a..8373944efa 100644 --- a/utilities/tools/Get-CrossReferencedModuleList.ps1 +++ b/utilities/tools/Get-CrossReferencedModuleList.ps1 @@ -100,7 +100,9 @@ function Get-CrossReferencedModuleList { foreach ($topLevelFolderPath in $topLevelFolderPaths) { - $moduleTemplatePaths = (Get-ChildItem -Path $topLevelFolderPath -Recurse -Include 'main.bicep' -File -Force).FullName + $moduleTemplatePaths = (Get-ChildItem -Path $topLevelFolderPath -Recurse -Include '*.bicep' -File -Force).FullName | Where-Object { + $_ -notmatch '.+[\/|\\].test[\/|\\].+' + } $resourceReferences = [System.Collections.ArrayList]@() $localPathReferences = [System.Collections.ArrayList]@() From aea24fdc648082f0c7772806936f086c03e1bba0 Mon Sep 17 00:00:00 2001 From: AlexanderSehr Date: Mon, 14 Aug 2023 23:56:06 +0200 Subject: [PATCH 2/2] Regenerated all readmes --- modules/compute/virtual-machines/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/compute/virtual-machines/README.md b/modules/compute/virtual-machines/README.md index 2dac052b96..9b5030ee01 100644 --- a/modules/compute/virtual-machines/README.md +++ b/modules/compute/virtual-machines/README.md @@ -1026,6 +1026,8 @@ This section gives you an overview of all local-referenced module files (i.e., o | Reference | Type | | :-- | :-- | +| `network/network-interfaces` | Local reference | +| `network/public-ip-addresses` | Local reference | | `recovery-services/vaults/backup-fabrics/protection-containers/protected-items` | Local reference | ## Deployment examples