日本熟妇hd丰满老熟妇,中文字幕一区二区三区在线不卡 ,亚洲成片在线观看,免费女同在线一区二区

alicloud_express_connect_traffic_qos_association

更新時間:

Provides a Express Connect Traffic Qos Association resource. Express Connect QoS associated resources.

For information about Express Connect Traffic Qos Association and how to use it, see What is Traffic Qos Association.

-> NOTE: Available since v1.224.0.

Example Usage

Basic Usage


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

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

data "alicloud_express_connect_physical_connections" "default" {
  name_regex = "preserved-NODELETING"
}

resource "alicloud_express_connect_traffic_qos" "createQos" {
  qos_name        = var.name
  qos_description = "terraform-example"
}

resource "alicloud_express_connect_traffic_qos_association" "associateQos" {
  instance_id   = data.alicloud_express_connect_physical_connections.default.ids.1
  qos_id        = alicloud_express_connect_traffic_qos.createQos.id
  instance_type = "PHYSICALCONNECTION"
}

Argument Reference

The following arguments are supported:

  • instance_id - (Optional, ForceNew, Computed) The ID of the associated instance.
  • instance_type - (Optional, ForceNew, Computed) The type of the associated instance. Value: physical connection physical connection.
  • qos_id - (Required, ForceNew) The QoS policy ID.

Attributes Reference

The following attributes are exported:

  • id - The ID of the resource supplied above.The value is formulated as <qos_id>:<instance_id>:<instance_type>.
  • status - The status of the associated instance. Value:

Timeouts

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

  • create - (Defaults to 5 mins) Used when create the Traffic Qos Association.
  • delete - (Defaults to 5 mins) Used when delete the Traffic Qos Association.

Import

Express Connect Traffic Qos Association can be imported using the id, e.g.

$ terraform import alicloud_express_connect_traffic_qos_association.example <qos_id>:<instance_id>:<instance_type>