Azure Bicep – Creating private bicep registry
In past few articles, I have been writing about Azure Bicep. In this articles, we are going to talk about creating private bicep registry. Why private registry is needed ?…
In past few articles, I have been writing about Azure Bicep. In this articles, we are going to talk about creating private bicep registry. Why private registry is needed ?…
In previous article, we have discussed about bicep configuration file. We have discussed about the module aliases and credentials precedence. In this short article, we are going to understand how…
In previous article, I have briefly mentioned about customizing the Bicep Linter ruleset by adding a bicep configuration file. In this article, we are going to discuss about this file…
In this article, we are going to discuss about how to Setup Linter for bicep. It will also show how to enable / disable specific rules. What is Linter ?…
We have seen that a bicep file can create the resources using resource element. The resource element also allows to run a custom script (either PowerShell or Azure CLI). In…
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…