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

alicloud_ecs_network_interface_attachment

更新時間:

Provides a ECS Network Interface Attachment resource.

For information about ECS Network Interface Attachment and how to use it, see What is Network Interface Attachment.

-> NOTE: Available since v1.123.1.

Example Usage

Basic Usage


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

data "alicloud_zones" "default" {
  available_resource_creation = "Instance"
}

data "alicloud_instance_types" "default" {
  availability_zone = data.alicloud_zones.default.zones.0.id
  eni_amount        = 3
}

resource "alicloud_vpc" "default" {
  vpc_name   = var.name
  cidr_block = "192.168.0.0/24"
}

resource "alicloud_vswitch" "default" {
  vswitch_name = var.name
  cidr_block   = "192.168.0.0/24"
  zone_id      = data.alicloud_zones.default.zones.0.id
  vpc_id       = alicloud_vpc.default.id
}

resource "alicloud_security_group" "default" {
  name        = var.name
  description = "New security group"
  vpc_id      = alicloud_vpc.default.id
}

data "alicloud_images" "default" {
  name_regex  = "^ubuntu_18.*64"
  most_recent = true
  owners      = "system"
}

resource "alicloud_instance" "default" {
  availability_zone = data.alicloud_zones.default.zones.0.id
  instance_name     = var.name
  host_name         = "tf-example"
  image_id          = data.alicloud_images.default.images.0.id
  instance_type     = data.alicloud_instance_types.default.instance_types.0.id
  security_groups   = [alicloud_security_group.default.id]
  vswitch_id        = alicloud_vswitch.default.id
}

data "alicloud_resource_manager_resource_groups" "default" {
  status = "OK"
}

resource "alicloud_ecs_network_interface" "default" {
  network_interface_name = var.name
  vswitch_id             = alicloud_vswitch.default.id
  security_group_ids     = [alicloud_security_group.default.id]
  description            = "Basic example"
  primary_ip_address     = "192.168.0.2"
  tags = {
    Created = "TF",
    For     = "example",
  }
  resource_group_id = data.alicloud_resource_manager_resource_groups.default.ids.0
}

resource "alicloud_ecs_network_interface_attachment" "default" {
  network_interface_id = alicloud_ecs_network_interface.default.id
  instance_id          = alicloud_instance.default.id
}

Argument Reference

The following arguments are supported:

  • network_interface_id - (Required, ForceNew) The ID of the network interface.
  • instance_id - (Required, ForceNew) The ID of the ECS instance.
  • trunk_network_instance_id - (Optional, ForceNew) The ID of the trunk network instance.
  • network_card_index - (Optional, ForceNew, Int, Available since v1.223.1) The index of the network card.
  • wait_for_network_configuration_ready - (Optional, Bool) The wait for network configuration ready.

Attributes Reference

The following attributes are exported:

  • id - The resource ID in terraform of Network Interface Attachment. It formats as <network_interface_id>:<instance_id>.

Timeouts

-> NOTE: Available since v1.223.1.

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

  • create - (Defaults to 2 mins) Used when create the Network Interface Attachment.
  • delete - (Defaults to 1 mins) Used when delete the Network Interface Attachment.

Import

ECS Network Interface Attachment can be imported using the id, e.g.

$ terraform import alicloud_ecs_network_interface_attachment.example <network_interface_id>:<instance_id>