文档

alicloud_edas_cluster

更新时间:
一键部署

Provides an EDAS cluster resource, see What is EDAS Cluster.

-> NOTE: Available since v1.82.0.

Example Usage

Basic Usage

variable "name" {
  default = "tf-example"
}
data "alicloud_regions" "default" {
  current = true
}

resource "alicloud_vpc" "default" {
  vpc_name   = var.name
  cidr_block = "10.4.0.0/16"
}
resource "alicloud_edas_cluster" "default" {
  cluster_name      = var.name
  cluster_type      = "2"
  network_mode      = "2"
  logical_region_id = data.alicloud_regions.default.regions.0.id
  vpc_id            = alicloud_vpc.default.id
}

Argument Reference

The following arguments are supported:

  • cluster_name - (Required, ForceNew) The name of the cluster that you want to create.
  • cluster_type - (Required, ForceNew) The type of the cluster that you want to create. Valid values only: 2: ECS cluster.
  • network_mode - (Required, ForceNew) The network type of the cluster that you want to create. Valid values: 1: classic network. 2: VPC.
  • logical_region_id - (Optional, ForceNew) The ID of the namespace where you want to create the application. You can call the ListUserDefineRegion operation to query the namespace ID.
  • vpc_id - (Optional, ForceNew) The ID of the Virtual Private Cloud (VPC) for the cluster.

Attributes Reference

The following attributes are exported:

  • id - The key of the resource supplied above. The value is formulated as <cluster_id>.

Import

EDAS cluster can be imported using the id, e.g.

$ terraform import alicloud_edas_cluster.cluster cluster_id

  • 本页导读 (0)
文档反馈