alicloud_eip_association

Provides an Alicloud EIP Association resource for associating Elastic IP to ECS Instance, SLB Instance or Nat Gateway.

Example Usage

# Create a new EIP association and use it to associate a EIP form a instance.

resource "alicloud_vpc" "vpc" {
  cidr_block = "10.1.0.0/21"
}

resource "alicloud_vswitch" "vsw" {
  vpc_id            = "${alicloud_vpc.vpc.id}"
  cidr_block        = "10.1.1.0/24"
  availability_zone = "cn-beijing-a"

  depends_on = [
    "alicloud_vpc.vpc",
  ]
}

resource "alicloud_instance" "ecs_instance" {
  image_id              = "ubuntu_140405_64_40G_cloudinit_20161115.vhd"
  instance_type         = "ecs.n4.small"
  availability_zone     = "cn-beijing-a"
  security_groups       = ["${alicloud_security_group.group.id}"]
  vswitch_id            = "${alicloud_vswitch.vsw.id}"
  instance_name         = "hello"
  instance_network_type = "vpc"

  tags {
    Name = "TerraformTest-instance"
  }
}

resource "alicloud_eip" "eip" {}

resource "alicloud_eip_association" "eip_asso" {
  allocation_id = "${alicloud_eip.eip.id}"
  instance_id   = "${alicloud_instance.ecs_instance.id}"
}

resource "alicloud_security_group" "group" {
  name        = "terraform-test-group"
  description = "New security group"
  vpc_id      = "${alicloud_vpc.vpc.id}"
}

Argument Reference

The following arguments are supported:

  • allocation_id - (Optional, Forces new resource) The allocation EIP ID.
  • instance_id - (Optional, Forces new resource) The ID of the ECS or SLB instance or Nat Gateway.

Attributes Reference

The following attributes are exported:

© 2018 HashiCorp
Licensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/alicloud/r/eip_association.html