Data Source: azurerm_resource_group

Use this data source to access the properties of an Azure resource group.

Example Usage

data "azurerm_resource_group" "test" {
  name = "dsrg_test"
}

resource "azurerm_managed_disk" "test" {
  name                 = "managed_disk_name"
  location             = "${data.azurerm_resource_group.test.location}"
  resource_group_name  = "${data.azurerm_resource_group.test.name}"
  storage_account_type = "Standard_LRS"
  create_option        = "Empty"
  disk_size_gb         = "1"
}

Argument Reference

  • name - (Required) Specifies the name of the resource group.

Attributes Reference

  • location - The location of the resource group.
  • tags - A mapping of tags assigned to the resource group.

© 2018 HashiCorp
Licensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/azurerm/d/resource_group.html