alicloud_dbfs_instance

Provides a DBFS Dbfs Instance resource. An instance of a database file system is equivalent to a file system and can store data of file types.

For information about DBFS Dbfs Instance and how to use it, see What is Dbfs Instance.

Example Usage

Basic Usage

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

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

resource "alicloud_dbfs_instance" "example" {
  category          = "standard"
  zone_id           = "cn-hangzhou-i"
  performance_level = "PL1"
  instance_name     = var.name
  size              = 100
}

Argument Reference

The following arguments are supported:

ecs_list

The ecs_list supports the following:

The following arguments will be discarded. Please use new fields as soon as possible:

Attributes Reference

The following attributes are exported:

Timeouts

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

Import

DBFS Dbfs Instance can be imported using the id, e.g.

$ terraform import alicloud_dbfs_instance.example <id>