alicloud_graph_database_db_instance

Provides a Graph Database Db Instance resource.

For information about Graph Database Db Instance and how to use it, see What is Db Instance.

Example Usage

Basic Usage

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

resource "alicloud_graph_database_db_instance" "example" {
  db_node_class            = "gdb.r.2xlarge"
  db_instance_network_type = "vpc"
  db_version               = "1.0"
  db_instance_category     = "HA"
  db_instance_storage_type = "cloud_ssd"
  db_node_storage          = "50"
  payment_type             = "PayAsYouGo"
  db_instance_description  = var.name
}

Argument Reference

The following arguments are supported:

db_instance_ip_array

The db_instance_ip_array supports the following:

Attributes Reference

The following attributes are exported:

Timeouts

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

Import

Graph Database Db Instance can be imported using the id, e.g.

$ terraform import alicloud_graph_database_db_instance.example <id>