IaC
2024
Bicep - Deploying Azure Application Insights
·818 words·4 mins·
100
views
·
5
likes
Keeping our cloud applications healthy and reliable requires constant monitoring. Azure Application Insights allows us to track performance, identify errors, and gain valuable insights into the behavior of our applications.
Terraform - Simplify Azure API Management Deployment
·1294 words·7 mins·
100
views
·
5
likes
Azure provides us with a flexible and powerful platform to implement API Management resources, allowing us to take advantage of the capabilities of the cloud to improve the lifecycle of our APIs.
Terraform - Deploying Azure Service Bus Topics
·1268 words·6 mins·
100
views
·
5
likes
In our previous post, we looked at how to use Terraform to set up namespaces in Azure Service Bus. Now, we’re moving on to the next step: creating topics in Azure Service Bus.
Bicep - Deploy Azure Firewall into Virtual Network
·1213 words·6 mins·
100
views
·
5
likes
Hey there! In another post, we discussed how you can use Terraform to deploy Azure Firewall and how it can make your cloud deployments more efficient and secure. Today, let’s explore how you can achieve similar results using Bicep, Azure’s language for resource declaration.
Terraform - Azure Service Bus Queue Deployment
·1420 words·7 mins·
100
views
·
5
likes
In the previous post, we started a series on using Terraform to deploy Azure Service Bus resources. We covered how to deploy namespaces in Azure Service Bus.
Now, in this second post, we will look at Azure Service Bus queues, a fundamental component for efficient message handling.
2023
Terraform - Provisioning Azure Service Bus Namespaces
·1661 words·8 mins·
100
views
·
5
likes
Azure Service Bus is a messaging service on the cloud that enables communication between applications and services. It’s a key component in many cloud architectures, especially when dealing with large-scale applications or services that require reliable, secure message passing and processing.
Bicep - Easy deployment of Azure Virtual Machine Scale Sets
·1155 words·6 mins·
100
views
·
5
likes
Hey there, folks! In today’s blog post, we’ll discuss the Azure Virtual Machine Scale Sets, also known as VMSS. If you have experience with Azure, you might already know that VMSS are crucial for managing cloud services that can be scaled up and down based on demand.
Terraform - Deploying Static Websites Using Storage Accounts and Azure CDN
·1591 words·8 mins·
100
views
·
5
likes
Static websites are gaining popularity due to their simplicity, security, and fast loading times. They are particularly useful for applications where the content is not updated frequently.
Azure Storage provides a convenient and cost-effective way to host such static websites, serving content directly from storage containers without the need for a web server.
Bicep - Deploying Log Analytics Workspaces
·853 words·5 mins·
100
views
·
5
likes
Hello! This week, I wanted to share a new post about biceps - As you know, Infrastructure as Code (IaC) has become a critical aspect of any successful and scalable deployment.
Terraform – Secure your Azure Key Vaults with private endpoints
·1393 words·7 mins·
100
views
·
5
likes
Hello everyone! The importance of securely managing our secrets, keys, and certificates has grown exponentially in our cloud environments. Azure Key Vault allows us to handle this sensitive data securely.
Terraform - Setting Up Private Endpoints for Azure Storage Accounts
·1453 words·7 mins·
100
views
·
5
likes
Hi folks, I hope everyone is doing well. We all use Azure Storage Accounts to keep our data, like files and blobs. And it’s super important to keep that data safe.
GitHub Actions - Building a Simple Bicep Workflow for Resource Deployment
·1400 words·7 mins·
100
views
·
5
likes
In the previous article, we explored deploying Azure resources using Bicep with Azure DevOps. This week, we’re switching gears to GitHub Actions, showcasing a simple workflow to automate Azure deployments.
Azure DevOps - Building a Simple Bicep Pipeline for Resource Deployment
·1232 words·6 mins·
100
views
·
5
likes
Nowadays, automating the deployment of cloud resources has become the norm. Azure DevOps is a go-to tool known for its solidness and adaptability. In this article, we’ll dive into how to create a simple pipeline to set up Azure resources using Microsoft’s infrastructure as code language, Bicep.
Terraform - Deploying Azure Application Insights
·1309 words·7 mins·
100
views
·
5
likes
Monitoring and analyzing performance in modern cloud-based environments is crucial to ensure reliability. Azure Application Insights is a powerful tool for monitoring your applications, helping you detect and diagnose errors. Building on our previous discussion on Azure Log Analytics workspaces, This blog post will guide you through implementing Azure Application Insights with a Terraform module.
Terraform - Deploying and Managing Azure Log Analytics Workspace
·1336 words·7 mins·
100
views
·
5
likes
Hi! As cloud architectures become more complex, Infrastructure as Code (IaC) has become increasingly important. By using tools like Terraform, IaC allows you to manage intricate infrastructures in a text-based, repeatable, and automated manner.
Terraform - Deploy Azure Firewall into Virtual Network
·1425 words·7 mins·
100
views
·
5
likes
Hello everyone! Azure offers a variety of security solutions, and Azure Firewall is a particularly effective tool. It is a fully managed cloud-native network firewall that provides top-notch protection for our virtual network resources.
Terraform - Deploying Azure Resource Locks
·1144 words·6 mins·
100
views
·
5
likes
Hi! Did you know that Azure Resource Locks can provide an extra layer of protection for your resources in case of accidental changes or deletions? And best of all, we can deploy them using Terraform.
Bicep - Practical Use Cases of String Functions in Azure Deployments
·791 words·4 mins·
100
views
·
5
likes
Bicep is a language specifically designed for deploying Azure resources and offers a more user-friendly syntax than JSON. One of the cool features of Bicep is its built-in functions that allow performing a variety of operations and manipulations on data while creating Azure Resource Manager (ARM) templates.
Terraform - Deploy Azure Bastion into Virtual Network
·1532 words·8 mins·
100
views
·
5
likes
Hi there! In a previous article, we discussed the deployment of an Azure Bastion host in an existing Virtual Network (VNet) using Azure CLI and PowerShell. While those methods are effective, there’s an opportunity to simplify the entire process.
Bicep - Deploy Azure Container Registry (ACR)
·864 words·5 mins·
100
views
·
5
likes
The use of Infrastructure as Code (IaC) has become vital in achieving successful and scalable implementations. Azure Bicep allows us to provision and manage resources in Azure with reliability and conciseness.