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

alicloud_amqp_virtual_host

更新時間:

Provides a RabbitMQ (AMQP) Virtual Host resource.

For information about RabbitMQ (AMQP) Virtual Host and how to use it, see What is Virtual Host.

-> NOTE: Available since v1.126.0.

Example Usage

Basic Usage


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

resource "alicloud_amqp_instance" "default" {
  instance_type  = "professional"
  max_tps        = 1000
  queue_capacity = 50
  support_eip    = true
  max_eip_tps    = 128
  payment_type   = "Subscription"
  period         = 1
}

resource "alicloud_amqp_virtual_host" "default" {
  instance_id       = alicloud_amqp_instance.default.id
  virtual_host_name = "tf-example"
}

Argument Reference

The following arguments are supported:

  • instance_id - (Required, ForceNew) InstanceId.
  • virtual_host_name - (Required, ForceNew) VirtualHostName.

Attributes Reference

The following attributes are exported:

  • id - The resource ID of Virtual Host. The value is formatted <instance_id>:<virtual_host_name>.

Import

RabbitMQ (AMQP) Virtual Host can be imported using the id, e.g.

$ terraform import alicloud_amqp_virtual_host.example <instance_id>:<virtual_host_name>