alicloud_resource_manager_resource_group

Provides a Resource Manager Resource Group resource. If you need to group cloud resources according to business departments, projects, and other dimensions, you can create resource groups.

For information about Resource Manager Resource Group and how to use it, see What is Resource Group.

Example Usage

Basic Usage

variable "name" {
  default = "tf-example"
}

resource "alicloud_resource_manager_resource_group" "example" {
  display_name        = var.name
  resource_group_name = var.name
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported:

Timeouts

The timeouts block allows you to specify timeouts for certain actions:

Import

Resource Manager Resource Group can be imported using the id, e.g.

$ terraform import alicloud_resource_manager_resource_group.example <id>