Create an Azure Resource Group using Terraform:
main.tf
terraform {
required_version = ">=1.0.0"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~>3.0.0"
}
}
}
provider "azurerm" {
features{}
}
variable "location" {
type = string
default = "East US"
}
resource "azurerm_resource_group" "rg" {
name = "dev-rg"
location = var.location
}
Execute below commands to install the provider (Azure) plugin, create source and destroy it
>terraform init -upgrade
>terraform validate
>terraform plan
>terraform apply
>terraform destroy
No comments:
Post a Comment