From b8a3e6b0d259fed8b25f023ad9856db141ebb387 Mon Sep 17 00:00:00 2001 From: Rafi-Microsoft Date: Wed, 6 May 2026 13:58:54 +0530 Subject: [PATCH 1/2] docs: add Bicep CLI prerequisite to local deployment guide Adds Bicep CLI (v0.33.0+) to the local deployment prerequisites so users provisioning this accelerator locally have the required Bicep version installed before running 'azd up' / 'az deployment'. Work item: AB#42634 --- docs/DeploymentGuide.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/DeploymentGuide.md b/docs/DeploymentGuide.md index ecf39d4..69ded05 100644 --- a/docs/DeploymentGuide.md +++ b/docs/DeploymentGuide.md @@ -125,6 +125,7 @@ Install the following tools on your local machine: | **Python** | 3.9 or later | [Download from python.org](https://www.python.org/downloads/) | | **Azure CLI** | Latest | [Install Azure CLI](https://learn.microsoft.com/cli/azure/install-azure-cli) | | **Azure Developer CLI (azd)** | Latest | [Install azd](https://learn.microsoft.com/azure/developer/azure-developer-cli/install-azd) | +| **Bicep CLI** | 0.33.0+ | [Install Bicep](https://learn.microsoft.com/azure/azure-resource-manager/bicep/install) | | **Git** | Latest | [Download from git-scm.com](https://git-scm.com/downloads) |
From 4b2e20c8b46861b90cd76d2a77f17e18b2800b68 Mon Sep 17 00:00:00 2001 From: Rafi-Microsoft Date: Wed, 6 May 2026 15:39:56 +0530 Subject: [PATCH 2/2] docs: address Copilot review on RTI Bicep CLI prerequisite - Reword version from '0.33.0+' to '0.33.0 or later' for consistency with the Python row. - Add 'az bicep version' to the Verify Installation block so users can quickly confirm they meet the 0.33.0+ requirement. Work item: AB#42634 --- docs/DeploymentGuide.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/DeploymentGuide.md b/docs/DeploymentGuide.md index 69ded05..7dcdee3 100644 --- a/docs/DeploymentGuide.md +++ b/docs/DeploymentGuide.md @@ -125,7 +125,7 @@ Install the following tools on your local machine: | **Python** | 3.9 or later | [Download from python.org](https://www.python.org/downloads/) | | **Azure CLI** | Latest | [Install Azure CLI](https://learn.microsoft.com/cli/azure/install-azure-cli) | | **Azure Developer CLI (azd)** | Latest | [Install azd](https://learn.microsoft.com/azure/developer/azure-developer-cli/install-azd) | -| **Bicep CLI** | 0.33.0+ | [Install Bicep](https://learn.microsoft.com/azure/azure-resource-manager/bicep/install) | +| **Bicep CLI** | 0.33.0 or later | [Install Bicep](https://learn.microsoft.com/azure/azure-resource-manager/bicep/install) | | **Git** | Latest | [Download from git-scm.com](https://git-scm.com/downloads) |
@@ -135,6 +135,7 @@ Install the following tools on your local machine: python --version az --version azd version +az bicep version git --version ```