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

alicloud_ecs_network_interface_permission

更新時間:

Provides a ECS Network Interface Permission resource.

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

-> NOTE: Available in v1.166.0+.

Example Usage

Basic Usage


data "alicloud_zones" "default" {
  available_resource_creation = "VSwitch"
}
data "alicloud_account" "default" {}
data "alicloud_resource_manager_resource_groups" "default" {}

resource "alicloud_vpc" "default" {
  vpc_name   = "terraform-example"
  cidr_block = "172.17.3.0/24"
}

resource "alicloud_vswitch" "default" {
  vswitch_name = "terraform-example"
  cidr_block   = "172.17.3.0/24"
  vpc_id       = alicloud_vpc.default.id
  zone_id      = data.alicloud_zones.default.zones.0.id
}

resource "alicloud_security_group" "default" {
  name   = "terraform-example"
  vpc_id = alicloud_vpc.default.id
}

resource "alicloud_ecs_network_interface" "default" {
  network_interface_name = "terraform-example"
  vswitch_id             = alicloud_vswitch.default.id
  security_group_ids     = [alicloud_security_group.default.id]
  description            = "terraform-example"
  primary_ip_address     = cidrhost(alicloud_vswitch.default.cidr_block, 100)
  tags = {
    Created = "TF",
    For     = "example",
  }
  resource_group_id = data.alicloud_resource_manager_resource_groups.default.ids.0
}

resource "alicloud_ecs_network_interface_permission" "example" {
  account_id           = data.alicloud_account.default.id
  network_interface_id = alicloud_ecs_network_interface.default.id
  permission           = "InstanceAttach"
  force                = true
}

Argument Reference

The following arguments are supported:

  • account_id - (Required, ForceNew) Alibaba Cloud Partner (Certified ISV) account ID or individual user ID.
  • network_interface_id - (Required, ForceNew) The ID of the network interface.
  • permission - (Required, ForceNew) The permissions of the Network Interface. Valid values: InstanceAttach. InstanceAttach: Allows authorized users to mount your ENI to the other ECS instance. The ECS instance must be in the same zone as the ENI.
  • force - (Optional, ForceNew) Whether to force deletion of Network Interface Permission. Default value: true.

Attributes Reference

The following attributes are exported:

  • id - The resource ID in terraform of Network Interface Permission.
  • status - The Status of the Network Interface Permissions. Valid values: Pending, Granted, Revoking, Revoked.

Timeouts

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

  • create - (Defaults to 1 mins) Used when creating the Network Interface Permission (until it reaches the initial Granted status).
  • delete - (Defaults to 1 mins) Used when deleting the Network Interface Permission.

Import

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

$ terraform import alicloud_ecs_network_interface_permission.example <id>