For all you need to know about the Bicep language, check out the Bicep documentation.
Bicep is an infrastructure-as-code (IaC) programming language that uses declarative syntax to deploy Azure resources. In a Bicep file, you define the infrastructure you want to deploy to Azure and then use that file throughout the development lifecycle to repeatedly deploy that infrastructure. Your resources are deployed in a consistent manner.
Learn more about the language and benefits of using Bicep in the What is Bicep documentation.
To get started with Bicep:
[!TIP] If you're new to Bicep, start by installing the Bicep VS Code extension and deploying a simple resource (like a storage account) to get comfortable with the end-to-end workflow before moving to larger templates.
If you have an existing Azure Resource Manager (ARM) template or set of Azure resources that you want to convert to .bicep format, see the recommended workflow for migrating resources to Bicep and Decompiling an ARM Template.
Also, there's a rich library of Bicep modules in Azure Verified Modules and examples in the azure-quickstart-templates repo to help you get started. You can also use the Bicep Playground to try out Bicep in your browser.
If you're looking for production-ready and tested Bicep templates, you can find them in the bicep-registry-modules repo. Learn more about these templates on the Azure Verified Modules website: https://aka.ms/avm.
First, author your Bicep code by using the Bicep language service as part of the Bicep VS Code extension.
Both Azure CLI (2.20.0+) and the PowerShell Az module (v5.6.0+) have Bicep support built in. This support means you can use the standard deployment commands with your *.bicep files. The tooling transpiles the code and sends it to ARM on your behalf. For example, to deploy main.bicep to a resource group my-rg, use the CLI command:
az deployment group create -f ./main.bicep -g my-rg
What unique benefits do you get with Bicep?
See more frequently asked questions on Microsoft Learn
The Bicep team is here to help you be successful with Bicep. Don't hesitate to reach out.
You can see the state of the issues in our GitHub Project.
The Bicep team hosts an open community call for users of Bicep. Go here to get invited, and follow the labeled issues for updates.
You can find recordings of the community calls on the Azure Deployments & Governance YouTube Channel.
You can also find us on social media on the following platforms:
You can also get in touch with other users through the community-created Azure Bicep users group on LinkedIn.
Because the ARM Template is now treated as an IL, other implementations of IL (ARM Template) generation are expected and encouraged. This list provides alternatives for creating ARM templates that might better fit your use case.
When you use the Bicep VS Code extension, VS Code collects usage data and sends it to Microsoft to help improve our products and services. Read the privacy statement to learn more. If you don't want to send usage data to Microsoft, set the telemetry.enableTelemetry setting to false. For more information, see the FAQ.
All files in the repository, except for the Azure Architecture SVG Icons (here and here), are subject to the MIT license.
The Azure Architecture SVG Icons (here and here) used in the Bicep VS Code extension are subject to the Terms of Use.
For information on building and running the code, contributing code, contributing examples, and contributing feature requests or bug reports, see Contributing to Bicep.