Azure Bicep – New Lines and Multi-Line Strings in Bicep Files
In past few articles, I have been trying to write about Azure Bicep. While working on those articles, I have experienced few things about new lines. In this short article,…
In past few articles, I have been trying to write about Azure Bicep. While working on those articles, I have experienced few things about new lines. In this short article,…
In this article, we are going to have a look at some of the commonly used file functions. Then we will also have a code example demonstrating usage of these…
In this article, let's discuss about the functions from az namespace. There are two such functions - deployment and environment. deployment() This is a function that returns information about current…
In past few articles, we have been discussing about Azure Bicep. We have seen how to create new resources or refer existing resources in bicep file. We also have seen…
In the previous article, we have seen how a key vault can be used to store sensitive values and how to use those values in the bicep file. In this…
In past few articles, I have been writing about Azure Bicep. We already have discussed about bicep parameter file in one of the past articles in this series. In this…
Sometimes, when we are creating multiple resources, some of the resources have dependencies on the other resources. For example, we cannot create blob storage, until we create storage account Or…
Sometimes, a resource may have one or more than one child resources. For example, when a storage account is created, the storage account may contain blobs, file storage, and queue…
Till now, we have seen multiple features from Azure Bicep. In this article, we can understand what are modules and how they can be used while authoring the bicep files.…
In this article, we are going to talk about how can we use loops in Azure bicep code. Why loops are needed ? As in other languages, loops in biceps…
In previous article, we have seen what are bicep parameter files. In this article, we are going to use Azure CLI to deploy the bicep file. We will also use…
In previous article, we have seen how to deploy a bicep file using a VS Code extension. While performing those steps, the bicep deployment wizard asked if we have any…