Training
Certification
Microsoft Certified: Azure Developer Associate - Certifications
Build end-to-end solutions in Microsoft Azure to create Azure Functions, implement and manage web apps, develop solutions utilizing Azure storage, and more.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Let's make sure your environment is set up for working with Bicep files. To author and deploy Bicep files, we recommend any of the following options:
Tasks | Options | Bicep CLI installation |
---|---|---|
Author | VS Code and Bicep extension | automatic |
Visual Studio and Bicep extension | automatic | |
Deploy | Azure CLI | automatic |
Azure PowerShell | manual | |
VS Code and Bicep extension | manual | |
Air-gapped cloud | download |
Warning
The Bicep CLI's stability in emulated environments isn't guaranteed, as emulation tools like Rosetta2 and QEMU typically don't perfectly emulate the architecture.
To create Bicep files, you need a good Bicep editor. We recommend:
Visual Studio Code - If you don't already have Visual Studio Code, install it.
Bicep extension for Visual Studio Code. Visual Studio Code with the Bicep extension provides language support and resource autocompletion. The extension helps you create and validate Bicep files.
To install the extension, search for bicep in the Extensions tab or in the Visual Studio marketplace.
Select Install.
To verify you've installed the extension, open any file with the .bicep
file extension. You should see the language mode in the lower right corner change to Bicep.
If you get an error during installation, see Troubleshoot Bicep installation.
You can deploy your Bicep files directly from the VS Code editor. For more information, see Deploy Bicep files from Visual Studio Code.
To see the settings:
From the View
menu, select Extensions
.
Select Bicep
from the list of extensions.
Select the FEATURE CONTRIBUTIONS
tab:
The Bicep extension has these settings and default values:
ID | Default value | Description |
---|---|---|
bicep.decompileOnPaste | true | Automatically convert pasted JSON values, JSON ARM templates or resources from a JSON ARM template into Bicep (use Undo to revert). For more information, see Paste as Bicep. |
bicep.enableOutputTimestamps | true | Prepend each line displayed in the Bicep Operations output channel with a timestamp. |
bicep.suppressedWarnings | Warnings that are being suppressed because a 'Don't show again' button was pressed. Remove items to reset. | |
bicep.enableSurveys | true | Enable occasional surveys to collect feedback that helps us improve the Bicep extension. |
bicep.completions.getAllAccessibleAzureContainerRegistries | false | When completing 'br:' module references, query Azure for all container registries accessible to the user (may be slow). If this option is off, only registries configured under moduleAliases in bicepconfig.json will be listed. |
bicep.trace.server | off | Configure tracing of messages sent to the Bicep language server. |
To configure the settings:
From the File
menu, select Preferences
, and then select Settings
.
Expand Extensions
, and then select Bicep
:
To author Bicep file from Visual Studio, you need:
To walk through a tutorial, see Quickstart: Create Bicep files with Visual Studio.
When you use Azure CLI with Bicep, you have everything you need to deploy and decompile Bicep files. Azure CLI automatically installs the Bicep CLI when a command is executed that needs it.
You must have Azure CLI version 2.20.0 or later installed. To install or update Azure CLI, see:
To verify your current version, run:
az --version
To validate your Bicep CLI installation, use:
az bicep version
To upgrade to the latest version, use:
az bicep upgrade
For more commands, see Bicep CLI.
Important
Azure CLI installs a self-contained instance of the Bicep CLI. This instance doesn't conflict with any versions you may have manually installed. Azure CLI doesn't add Bicep CLI to your PATH.
You're done with setting up your Bicep environment. The rest of this article describes installation steps that you don't need when using Azure CLI.
You must have Azure PowerShell version 5.6.0 or later installed. To update or install, see Install Azure PowerShell.
Azure PowerShell doesn't automatically install the Bicep CLI. Instead, you must manually install the Bicep CLI.
Important
The self-contained instance of the Bicep CLI installed by Azure CLI isn't available to PowerShell commands. Azure PowerShell deployments fail if you haven't manually installed the Bicep CLI.
When you manually install the Bicep CLI, run the Bicep commands with the bicep
syntax, instead of the az bicep
syntax for Azure CLI.
To check your Bicep CLI version, run:
bicep --version
The following methods install the Bicep CLI and add it to your PATH. You must manually install for any use other than Azure CLI.
When installing manually, select a location that is different than the one managed by Azure CLI. All of the following examples use a location named bicep or .bicep. This location won't conflict with the location managed by Azure CLI, which uses .azure.
# Fetch the latest Bicep CLI binary
curl -Lo bicep https://github.com/Azure/bicep/releases/latest/download/bicep-linux-x64
# Mark it as executable
chmod +x ./bicep
# Add bicep to your PATH (requires admin)
sudo mv ./bicep /usr/local/bin/bicep
# Verify you can now access the 'bicep' command
bicep --help
# Done!
Note
For lightweight Linux distributions like Alpine, use bicep-linux-musl-x64 instead of bicep-linux-x64 in the preceding script.
# Add the tap for bicep
brew tap azure/bicep
# Install the tool
brew install bicep
# Fetch the latest Bicep CLI binary
curl -Lo bicep https://github.com/Azure/bicep/releases/latest/download/bicep-osx-x64
# Mark it as executable
chmod +x ./bicep
# Add Gatekeeper exception (requires admin)
sudo spctl --add ./bicep
# Add bicep to your PATH (requires admin)
sudo mv ./bicep /usr/local/bin/bicep
# Verify you can now access the 'bicep' command
bicep --help
# Done!
Note
The installation of Bicep CLI version 0.16.X or higher does not need Gatekeeper exception. However, nightly builds of the Bicep CLI still require the exception.
Download and run the latest Windows installer. The installer doesn't require administrative privileges. After the installation, Bicep CLI is added to your user PATH. Close and reopen any open command shell windows for the PATH change to take effect.
choco install bicep
winget install -e --id Microsoft.Bicep
# Create the install folder
$installPath = "$env:USERPROFILE\.bicep"
$installDir = New-Item -ItemType Directory -Path $installPath -Force
$installDir.Attributes += 'Hidden'
# Fetch the latest Bicep CLI binary
(New-Object Net.WebClient).DownloadFile("https://github.com/Azure/bicep/releases/latest/download/bicep-win-x64.exe", "$installPath\bicep.exe")
# Add bicep to your PATH
$currentPath = (Get-Item -path "HKCU:\Environment" ).GetValue('Path', '', 'DoNotExpandEnvironmentNames')
if (-not $currentPath.Contains("%USERPROFILE%\.bicep")) { setx PATH ($currentPath + ";%USERPROFILE%\.bicep") }
if (-not $env:path.Contains($installPath)) { $env:path += ";$installPath" }
# Verify you can now access the 'bicep' command.
bicep --help
# Done!
The bicep install
and bicep upgrade
commands don't work in an air-gapped environment. To install Bicep CLI in an air-gapped environment, you need to download the Bicep CLI executable manually and save it to .azure/bin. This location is where the instance managed by Azure CLI is installed.
Linux
macOS
Windows
When using the Azure CLI task on air-gapped cloud, you must set the useGlobalConfig
property of the task to true
. The default value is false
. See CI/CD with Azure Pipelines and Bicep files for an example.
If you'd like to try the latest pre-release bits of Bicep before they're released, see Install nightly builds.
Warning
These pre-release builds are much more likely to have known or unknown bugs.
The Bicep team has made the Azure.Bicep.Core NuGet package publicly available on nuget.org. While it's public, it isn't a supported package. Any dependency you take on this package will be done at your own risk and we reserve the right to push breaking changes to this package at any time.
For more information about installing and consuming NuGet packages, see Consume packages.
For more information about using Visual Studio Code and the Bicep extension, see Quickstart: Create Bicep files with Visual Studio Code.
If you have problems with your Bicep installation, see Troubleshoot Bicep installation.
To deploy Bicep files from an Azure Pipeline, see Integrate Bicep with Azure Pipelines. To deploy Bicep files through GitHub Actions, see Deploy Bicep files by using GitHub Actions.
Training
Certification
Microsoft Certified: Azure Developer Associate - Certifications
Build end-to-end solutions in Microsoft Azure to create Azure Functions, implement and manage web apps, develop solutions utilizing Azure storage, and more.
Documentation
Deploy resources with Azure CLI and Bicep files - Azure Resource Manager
Use Azure Resource Manager and Azure CLI to deploy resources to Azure. The resources are defined in a Bicep file.
Bicep CLI commands and overview - Azure Resource Manager
Describes the commands that you can use in the Bicep CLI. These commands include building Azure Resource Manager templates from Bicep.
Deploy resources with PowerShell and Bicep - Azure Resource Manager
Use Azure Resource Manager and Azure PowerShell to deploy resources to Azure. The resources are defined in a Bicep file.