Files
opentf/website/source/docs/providers/alicloud/r/eip.html.markdown
demonwy 69ec7e12ac provider/alicloud: Add new resource ESS, including scalinggroup scalingconfiguration scalingrule and schedule (#13731)
* add docs

* add new resource ess

* add examples

* update aliyun go

* merge master

* fix ci
2017-04-18 15:18:57 +03:00

1.1 KiB

layout, page_title, sidebar_current, description
layout page_title sidebar_current description
alicloud Alicloud: alicloud_eip docs-alicloud-resource-eip Provides a ECS EIP resource.

alicloud_eip

Provides a ECS EIP resource.

Example Usage

# Create a new EIP.
resource "alicloud_eip" "example" {
  bandwidth            = "10"
  internet_charge_type = "PayByBandwidth"
}

Argument Reference

The following arguments are supported:

  • bandwidth - (Optional) Maximum bandwidth to the elastic public network, measured in Mbps (Mega bit per second). If this value is not specified, then automatically sets it to 5 Mbps.
  • internet_charge_type - (Optional, Forces new resource) Internet charge type of the EIP, Valid values are PayByBandwidth, PayByTraffic. Default is PayByBandwidth.

Attributes Reference

The following attributes are exported:

  • id - The EIP ID.
  • bandwidth - The elastic public network bandwidth.
  • internet_charge_type - The EIP internet charge type.
  • status - The EIP current status.
  • ip_address - The elastic ip address
  • instance - The ID of the instance which is associated with the EIP.