Use this data source to access the properties of an Azure resource group.
data "azurestack_resource_group" "test" {
name = "dsrg_test"
}
resource "azurestack_managed_disk" "test" {
name = "managed_disk_name"
location = data.azurestack_resource_group.test.location
resource_group_name = data.azurestack_resource_group.test.name
storage_account_type = "Standard_LRS"
create_option = "Empty"
disk_size_gb = "1"
}
name
- (Required) Specifies the name of the resource group.location
- The location of the resource group.tags
- A mapping of tags assigned to the resource group.