-
Familiarize yourself with the Azure CLI
Familiarize yourself with the Azure CLI The Azure Command-Line Interface (CLI) is a set of commands used to manage Azure resources. It's a cross-platform tool that provides a command-line interface for interacting with Azure services, making it easier to create, configure, manage, and monitor Azure… [ Read More ]
-
Hands-on Demo – Deploy a Bicep file from Azure Pipelines
Hands-on Demo – Deploy a Bicep file from Azure Pipelines In this demo, we'll show how to deploy an Azure resource using a Bicep file through Azure Pipelines. Azure Pipelines is a cloud service that automates the build and release process for your applications. By… [ Read More ]
-
Hands-on Demo – Deploy a Bicep file from GitHub Workflows
Hands-on Demo – Deploy a Bicep file from GitHub Workflows In this demo, we will show how to deploy an Azure resource using a Bicep file via GitHub Actions. GitHub Actions allow you to automate your workflows, and in this case, we will set up… [ Read More ]
-
Hands-on Demo – Create Bicep templates
Hands-on Demo – Create Bicep templates Let’s go step-by-step and create a simple Bicep template. This will demonstrate how to structure and define parameters, resources, outputs, and other features such as loops and conditions. We'll create a Bicep template to deploy an Azure Virtual Network… [ Read More ]
-
Azure Application Gateway – Implementation and Troubleshooting
To help with implementation or architecture for Azure Application Gateway, let me outline the process step by step and provide details for a simple use case. I'll also provide an option for a custom architecture diagram if needed. Implementation Plan for Azure Application Gateway Scenario:… [ Read More ]
-
Understanding Bicep File Structure and Syntax
Understanding Bicep File Structure and Syntax Bicep is a domain-specific language (DSL) for declaring Azure resources in a more readable and concise way than traditional ARM templates (JSON). It compiles into an ARM JSON template and is designed to be easier to author, read, and… [ Read More ]
-
Installing and Troubleshooting Azure Bicep
Installing and Troubleshooting Azure Bicep Bicep is a powerful tool for defining Azure resources using a simplified, declarative syntax. To start working with B Bicep, you need to install the Bicep CLI and possibly the VS Code extension to streamline your workflow. Below is a… [ Read More ]
-
Delve into the Azure Bicep
Delve into the Azure Bicep Bicep is a domain-specific language (DSL) developed by Microsoft to simplify and improve the authoring of Azure Resource Manager (ARM) templates. It is a declarative language designed to provide a more readable, concise, and manageable way of deploying resources in… [ Read More ]
-
Investigating the Secrets in ARM templates
Investigating the Secrets in ARM templates Managing secrets in Azure Resource Manager (ARM) templates is crucial for securely handling sensitive information like passwords, connection strings, or API keys. Azure provides mechanisms to integrate Azure Key Vault for securely managing and referencing secrets during ARM template… [ Read More ]
-
Learn how to modularize your ARM Templates
Learn how to modularize your ARM Templates As Azure environments grow more complex, modularization of Azure Resource Manager (ARM) templates becomes essential for maintaining scalability, reusability, and clarity. ARM templates can be modularized through the use of linked templates, nested templates, and other techniques to… [ Read More ]