From a913a996add40743f94918970fd977da53eb205a Mon Sep 17 00:00:00 2001 From: Zach Trocinski <30884663+oZakari@users.noreply.github.com> Date: Wed, 10 Apr 2024 03:05:30 -0500 Subject: [PATCH] Documentation: Update Issue #1 Guidance (#758) * Fix version references for known issue #1 * Update to match modules for known issue 1 --- docs/wiki/KnownIssues.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/docs/wiki/KnownIssues.md b/docs/wiki/KnownIssues.md index 48d76c045..ee7769a42 100644 --- a/docs/wiki/KnownIssues.md +++ b/docs/wiki/KnownIssues.md @@ -13,25 +13,26 @@ This page lists the known issues and limitations currently present in ALZ-Bicep. ```yaml - task: AzurePowerShell@5 - displayName: "Logging and Sentinel Deployment" + displayName: "Logging and Sentinel Resource Group Deployment" inputs: azureSubscription: ${{ variables.SERVICE_CONNECTION_NAME }} - azurePowerShellVersion: "11.3.0" + azurePowerShellVersion: OtherVersion + preferredAzurePowerShellVersion: 11.5.0 pwsh: true ScriptType: "InlineScript" Inline: | - .\pipeline-scripts\Deploy-ALZLoggingAndSentinel.ps1 + .\pipeline-scripts\Deploy-ALZLoggingAndSentinelResourceGroup.ps1 ``` GitHub Actions Workaround: ```yaml - - name: "Logging and Sentinel Deployment" + - name: "Logging and Sentinel Resource Group Deployment" uses: azure/powershell@v1 with: inlineScript: | - .\pipeline-scripts\Deploy-ALZLoggingAndSentinel.ps1 - azPSVersion: "11.3.0" + .\pipeline-scripts\Deploy-ALZLoggingAndSentinelResourceGroup.ps1 + azPSVersion: "11.5.0" ``` - **Status:** As our team doesn't directly own the impacted module or have control over the agents/runners, we aim to enhance flexibility to assist with such issues in the future. To achieve this, we plan to introduce a variable in the .env file, enabling version control without the need for individual additions.