Adron
8/1/2019 - 8:01 PM

Setting up an Azure Resource Group.

Setting up an Azure Resource Group.

provider "azurerm" {
  version = "=1.27.0"

  subscription_id = "00000000-0000-0000-0000-000000000000"
  tenant_id       = "11111111-1111-1111-1111-111111111111"

}

resource "azurerm_resource_group" "adrons_resource_group_workspace" {
  name     = "adrons_workspace"
  location = "West US 2"

  tags = {
    environment = "Development"
  }
}