» alicloud_slb

Provides an Application Load Balancer resource.

» Example Usage

# Create a new load balancer for classic
resource "alicloud_slb" "classic" {
  name                 = "test-slb-tf"
  internet             = true
  internet_charge_type = "PayByBandwidth"
  bandwidth            = 5
  specification = "slb.s1.small"
}

# Create a new load balancer for VPC
resource "alicloud_vpc" "default" {
  # Other parameters...
}

resource "alicloud_vswitch" "default" {
  # Other parameters...
}

resource "alicloud_slb" "vpc" {
  name       = "test-slb-tf"
  vswitch_id = "${alicloud_vswitch.default.id}"
}
# Specify master zone id and slave zone id for the slb instance
data "alicloud_zones" "default" {
    "available_resource_creation"= "Slb"
}
resource "alicloud_slb" "default" {
  name                 = "my-master-slb"
  internet             = true
  internet_charge_type = "PayByTraffic"
  bandwidth            = 5
  specification = "slb.s1.small"
  master_zone_id       = "${data.alicloud_zones.main.zones.0.id}"
  slave_zone_id        = "${data.alicloud_zones.main.zones.0.slb_slave_zone_ids.0}"
}

» Argument Reference

The following arguments are supported:

  • name - (Optional) The name of the SLB. This name must be unique within your AliCloud account, can have a maximum of 80 characters, must contain only alphanumeric characters or hyphens, such as "-","/",".","_", and must not begin or end with a hyphen. If not specified, Terraform will autogenerate a name beginning with tf-lb.
  • internet - (Optional, ForceNew) If true, the SLB addressType will be internet, false will be intranet, Default is false. If load balancer launched in VPC, this value must be "false".
  • internet_charge_type - (Optional, ForceNew) Valid values are PayByBandwidth, PayByTraffic. If this value is "PayByBandwidth", then argument "internet" must be "true". Default is "PayByTraffic". If load balancer launched in VPC, this value must be "PayByTraffic". Before version 1.10.1, the valid values are "paybybandwidth" and "paybytraffic".
  • bandwidth - (Optional) Valid value is between 1 and 1000, If argument "internet_charge_type" is "paybytraffic", then this value will be ignore.
  • listener - (Deprecated) The field has been deprecated from terraform-alicloud-provider version 1.3.0, and use resource alicloud_slb_listener to replace.
  • vswitch_id - (Required for a VPC SLB, Forces New Resource) The VSwitch ID to launch in.
  • specification - (Optional) The specification of the Server Load Balancer instance. Default to empty string indicating it is "Shared-Performance" instance. Launching "Performance-guaranteed" instance, it is must be specified and it valid values are: "slb.s1.small", "slb.s2.small", "slb.s2.medium", "slb.s3.small", "slb.s3.medium" and "slb.s3.large".
  • tags - (Optional) A mapping of tags to assign to the resource. The tags can have a maximum of 10 tag for every load balancer instance.
  • instance_charge_type - (Optional, Available in v1.34.0+) The billing method of the load balancer. Valid values are "PrePaid" and "PostPaid". Default to "PostPaid".
  • period - (Optional, Available in v1.34.0+) The duration that you will buy the resource, in month. It is valid when instance_charge_type is PrePaid. Default to 1. Valid values: [1-9, 12, 24, 36].
  • master_zone_id - (Optional, ForceNew, Available in v1.36.0+) The primary zone ID of the SLB instance. If not specified, the system will be randomly assigned. You can query the primary and standby zones in a region by calling the DescribeZone API.
  • slave_zone_id - (Optional, ForceNew, Available in v1.36.0+) The standby zone ID of the SLB instance. If not specified, the system will be randomly assigned. You can query the primary and standby zones in a region by calling the DescribeZone API.

» Attributes Reference

The following attributes are exported:

  • id - The ID of the load balancer.
  • name - The name of the load balancer.
  • internet - The internet of the load balancer.
  • internet_charge_type - The internet_charge_type of the load balancer.
  • bandwidth - The bandwidth of the load balancer.
  • vswitch_id - The VSwitch ID of the load balancer. Only available on SLB launched in a VPC.
  • address - The IP address of the load balancer.
  • specification - The specification of the Server Load Balancer instance.

» Import

Load balancer can be imported using the id, e.g.

$ terraform import alicloud_slb.example lb-abc123456