alicloud_open_search_app_group

Provides a Open Search App Group resource.

For information about Open Search App Group and how to use it, see What is App Group.

Example Usage

Basic Usage

provider "alicloud" {
  region = "cn-hangzhou"
}
variable "name" {
  default = "name"
}
resource "alicloud_open_search_app_group" "default" {
  app_group_name = var.name
  payment_type   = "PayAsYouGo"
  type           = "standard"
  quota {
    doc_size         = 1
    compute_resource = 20
    spec             = "opensearch.share.common"
  }
}

Argument Reference

The following arguments are supported:

quota

The quota supports the following:

order

The quota supports the following:

Attributes Reference

The following attributes are exported:

Import

Open Search App Group can be imported using the id, e.g.

$ terraform import alicloud_open_search_app_group.example <id>