Getting started with terraform on azure - Part 1

Sunshine coast .Net user group meeting. Topic - Getting started with terraform on Azure.

October 11, 2020 · (updated December 16, 2023) · 1 min · Pradeep Loganathan

Getting started with terraform on azure - Part 2

Sunshine coast .Net user group meeting. Topic - Getting started with terraform on Azure.

October 11, 2020 · (updated December 16, 2023) · 1 min · Pradeep Loganathan
Terraform - getting started

Terraform - Getting Started

Terraform is an open source tool created by HashiCorp to define infrastructure as cod using a simple, declarative language called HCL. Terraform is used to deploy and manage infrastructure across a variety of cloud providers & virtualization platforms. It can be used to deploy infrastructure to all major cloud providers such as Azure, AWS, Digital ocean, and virtualization platforms such as VMware, Open stack, and others.

October 11, 2020 · (updated February 5, 2024) · 15 min · Pradeep Loganathan

Creating a Windows VM using Terraform

This post is a follow up on the Terraform 101 sessions for the Sunshine Coast dotnet user group. The slides and the code from the session are below. Slides Terraform 101 from Pradeep Loganathan Creating a Windows Virtual Machine provider "azurerm" { version = "=2.8.0" features {} } #create the resource group resource "azurerm_resource_group" "rg" { name = "ateam-resource-group" location = "australiaeast" } #create the virtual network resource "azurerm_virtual_network" "vnet1" { resource_group_name = azurerm_resource_group....

May 18, 2020 · (updated September 3, 2022) · 2 min · Pradeep Loganathan

Infrastructure as Code

Infrastructure as code (IaC) is the process of provisioning and managing your infrastructure resources through definition files or code.

July 29, 2019 · (updated February 2, 2024) · 7 min · Pradeep Loganathan