On this page
azurerm_resource_group
Manages a resource group on Azure.
Example Usage
resource "azurerm_resource_group" "test" {
name = "testResourceGroup1"
location = "West US"
tags {
environment = "Production"
}
}
Argument Reference
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 runaz account list-locations --output table
.tags
- (Optional) A mapping of tags to assign to the resource.
Attributes Reference
The following attributes are exported:
id
- The resource group ID.
Import
Resource Groups can be imported using the resource id
, e.g.
terraform import azurerm_resource_group.mygroup /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup
© 2018 HashiCorp
Licensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/azurerm/r/resource_group.html