alicloud_eip_segment_address

Provides a EIP Segment Address resource.

For information about EIP Segment Address and how to use it, see What is Segment Address.

Example Usage

Basic Usage

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

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


resource "alicloud_eip_segment_address" "default" {
  eip_mask             = "28"
  bandwidth            = "5"
  isp                  = "BGP"
  internet_charge_type = "PayByBandwidth"
  netmode              = "public"
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported:

Timeouts

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

Import

EIP Segment Address can be imported using the id, e.g.

$ terraform import alicloud_eip_segment_address.example <id>