Skip to main content
Jorge Bernhardt Jorge Bernhardt

Terraform

2024

Terraform - Azure Compute Gallery Deployment and Image Management
·1865 words·9 mins· 100 views · 5 likes
Azure CLI Azure Cloud Shell Microsoft Microsoft Azure
Hi everyone! Today, in this blog post, we will explore how to deploy and manage Azure Shared Image Galleries using Terraform. As you know, Shared Image Galleries in Azure provide a centralized way to store and manage custom images for your virtual machines, enabling consistent and efficient deployments across multiple regions.
Terraform – Simplified Azure Container Instances (ACI) Deployment
·1606 words·8 mins· 100 views · 5 likes
Azure CLI Azure Cloud Shell ACI Microsoft
Hi everyone! Today, in this blog post, we will explore how to deploy Azure Container Instances (ACI) using Terraform. As we have discussed several times on this blog, ACI is a vital Azure service for running Docker containers without the need to manage underlying virtual machines.
Terraform – Simplified Azure Container Registry (ACR) Deployment
·1407 words·7 mins· 100 views · 5 likes
Azure CLI Azure Cloud Shell ACR Microsoft
Hi folks! Today, in this blog post, we’re going to explore how to implement Azure Container Registry (ACR) using Terraform. As we’ve discussed on several occasions in this blog, ACR is an essential Azure service for storing and managing Docker container images.
Terraform - Simplify Azure API Management Deployment
·1294 words·7 mins· 100 views · 5 likes
Terraform Microsoft Azure API Management IaC
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
Terraform IaC Azure Service Bus Microsoft Azure
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.
Terraform - Azure Service Bus Queue Deployment
·1420 words·7 mins· 100 views · 5 likes
Terraform IaC Azure Service Bus Microsoft Azure
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
Terraform IaC Azure Service Bus Microsoft Azure
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.
Terraform - Deploying Static Websites Using Storage Accounts and Azure CDN
·1591 words·8 mins· 100 views · 5 likes
Terraform IaC Azure Storage Account Microsoft Azure
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.
Terraform – Secure your Azure Key Vaults with private endpoints
·1393 words·7 mins· 100 views · 5 likes
Terraform IaC Azure Key Vault Azure Private Endpoint
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
Terraform IaC Azure Storage Account Azure Private Endpoint
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.
Terraform - Deploying Azure Application Insights
·1309 words·7 mins· 100 views · 5 likes
Terraform Microsoft Azure Azure Monitor IaC
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
IaC Azure CLI Microsoft Microsoft Azure
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
Terraform Microsoft Azure IaC Azure Firewall
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
Terraform Microsoft Azure Azure Resource Locks IaC
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.
Terraform - Deploy Azure Bastion into Virtual Network
·1532 words·8 mins· 100 views · 5 likes
Terraform Microsoft Azure IaC Azure Bastion
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.
Terraform - Deploy and manage Subscription Budgets
·1003 words·5 mins· 100 views · 5 likes
Budgets Microsoft Microsoft Azure Terraform
Hi! Today, I’d like to share a helpful tip on how you can efficiently manage your Azure resources and services while keeping your cloud spending in check. With Azure Budgets, you can easily set budget thresholds and receive alerts to monitor your costs proactively.
Terraform - Deploy and manage Azure action groups
·1170 words·6 mins· 100 views · 5 likes
Terraform Microsoft Azure Azure Monitor IaC
Hey, did you know that Azure Monitor has these cool things called action groups? They help you manage alerts by connecting them to different actions. You can receive notifications by email or text message, run Azure Functions, or even start a webhook with an HTTP call.
Terraform - Creating Azure Private DNS Zones and Records
·1122 words·6 mins· 100 views · 5 likes
Terraform Microsoft Azure Azure Private DNS IaC
Hi everyone! Today I want to share how I use Terraform to implement your private DNS zones in Azure. Also, I’ll show you how to create ‘A’ records in these zones.
Terraform - Deploying Azure Hub-Spoke Networking
·1516 words·8 mins· 100 views · 5 likes
Microsoft Azure Networking Terraform Virtual network
In this blog post, I want to show you how to implement a hub-spoke network architecture on Azure using Terraform, one of my favorite infrastructure as code (IaC) tools. The hub-spoke model is a widely adopted networking strategy that allows you to simplify management, increase scalability, and improve the security of your Azure resources.
How to store the Terraform state file in Google Cloud Storage
·878 words·5 mins· 100 views · 5 likes
Google Google CloudShell Terraform Google Cloud Storage
When you start using Terraform to manage your cloud infrastructure, a key consideration is where to store the state file that Terraform generates to track changes to your infrastructure. While storing this file locally on your machine is possible, a more scalable and secure approach is to store it in a centralized location that your entire team can access.