You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/bicep/overview.md
+59-1Lines changed: 59 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
title: Bicep language for deploying Azure resources
3
3
description: Describes the Bicep language for deploying infrastructure to Azure. It provides an improved authoring experience over using JSON to develop templates.
4
4
ms.topic: conceptual
5
-
ms.date: 01/03/2022
5
+
ms.date: 01/19/2022
6
6
---
7
7
8
8
# What is Bicep?
@@ -17,6 +17,64 @@ Bicep provides the following advantages over other infrastructure-as-code option
17
17
18
18
-**Support for all resource types and API versions**: Bicep immediately supports all preview and GA versions for Azure services. As soon as a resource provider introduces new resources types and API versions, you can use them in your Bicep file. You don't have to wait for tools to be updated before using the new services.
19
19
-**Simple syntax**: When compared to the equivalent JSON template, Bicep files are more concise and easier to read. Bicep requires no previous knowledge of programming languages. Bicep syntax is declarative and specifies which resources and resource properties you want to deploy.
20
+
21
+
The following examples show the difference between a Bicep file and the equivalent JSON template. Both examples deploy a storage account.
-**Authoring experience**: When you use VS Code to create your Bicep files, you get a first-class authoring experience. The editor provides rich type-safety, intellisense, and syntax validation.
21
79
-**Modularity**: You can break your Bicep code into manageable parts by using [modules](./modules.md). The module deploys a set of related resources. Modules enable you to reuse code and simplify development. Add the module to a Bicep file anytime you need to deploy those resources.
22
80
-**Integration with Azure services**: Bicep is integrated with Azure services such as Azure Policy, template specs, and Blueprints.
0 commit comments