Creating the infrastructure for a secure 3-tier application on Azure
main.tf file :
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~>3.0"
}
}
}
provider "azurerm" {
features {}
}
resource "azurerm_resource_group" "rg" {
name = "appservice-rg"
l...
iamkishaloy.hashnode.dev3 min read