alicloud_dfs_access_group

Provides a DFS Access Group resource.

For information about DFS Access Group and how to use it, see What is Access Group.

Example Usage

Basic Usage

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

provider "alicloud" {
  region = "cn-hangzhou"
}


resource "alicloud_dfs_access_group" "default" {
  description       = var.name
  network_type      = "VPC"
  access_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

DFS Access Group can be imported using the id, e.g.

$ terraform import alicloud_dfs_access_group.example <id>