Skip to content

Instantly share code, notes, and snippets.

@dilani14
Created April 26, 2020 13:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dilani14/54514626d61182b369dec40bb223a44e to your computer and use it in GitHub Desktop.
Save dilani14/54514626d61182b369dec40bb223a44e to your computer and use it in GitHub Desktop.
create rg
variable "location" {
type = string
default = "eastus"
}
provider "azurerm" {
}
resource "azurerm_resource_group" "rg" {
name = "dilani-tf-rg"
location = var.location
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment