Skip to content

Commit

Permalink
Documentation: Update Issue #1 Guidance (Azure#758)
Browse files Browse the repository at this point in the history
* Fix version references for known issue #1

* Update to match modules for known issue 1
  • Loading branch information
oZakari authored Apr 10, 2024
1 parent 6cd44b9 commit a913a99
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions docs/wiki/KnownIssues.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit a913a99

Please sign in to comment.