W3cubDocs

/Terraform

aws_elb

Provides information about a "classic" Elastic Load Balancer (ELB). See LB Data Source if you are looking for "v2" Application Load Balancer (ALB) or Network Load Balancer (NLB).

This data source can prove useful when a module accepts an LB as an input variable and needs to, for example, determine the security groups associated with it, etc.

Example Usage

variable "lb_name" {
  type    = "string"
  default = ""
}

data "aws_elb" "test" {
  name = "${var.lb_name}"
}

Argument Reference

The following arguments are supported:

  • name - (Required) The unique name of the load balancer.

Attributes Reference

See the ELB Resource for details on the returned attributes - they are identical.

© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/aws/d/elb.html