Creates a new resource group on Azure.
resource "azurestack_resource_group" "test" {
name = "testResourceGroup1"
location = "West US"
tags = {
environment = "Production"
}
}
The following arguments are supported:
name
- (Required) The name of the resource group. Must be unique on your
Azure subscription.
location
- (Required) The location where the resource group should be created.
For a list of all Azure locations, please consult this link or run az account list-locations --output table
.
tags
- (Optional) A mapping of tags to assign to the resource.
The following attributes are exported:
id
- The resource group ID.Resource Groups can be imported using the resource id
, e.g.
terraform import azurestack_resource_group.mygroup /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup