Skip to content

Instantly share code, notes, and snippets.

@IPvPho
Last active September 27, 2021 12:47
Show Gist options
  • Save IPvPho/f3379b5c47ffea16361db0f9e14e7ee3 to your computer and use it in GitHub Desktop.
Save IPvPho/f3379b5c47ffea16361db0f9e14e7ee3 to your computer and use it in GitHub Desktop.
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~> 2.65"
}
}
required_version = ">= 0.15.0"
}
provider "azurerm" {
features {}
}
resource "azurerm_resource_group" "rg" {
name = "myTFResourceGroup"
location = "westus2"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment