Author: Not specified | Language: erlang |
Description: (v24) | Timestamp: 2018-01-08 14:33:18 +0000 |
View raw paste | Parent paste by: Not specified - Child paste by: Not specified | Reply |
resource "aws_elb" "example" {
name = "terraform-asg-example"
availability_zones = ["${data.aws_availability_zones.all.names}"]
}
resource "aws_elb" "example" {
name = "terraform-asg-example"
availability_zones = ["${data.aws_availability_zones.all.names}"]
listener {
lb_port = 80
lb_protocol = "http"
instance_port = "${var.server_port}"
instance_protocol = "http"
}
}
name = "terraform-asg-example"
availability_zones = ["${data.aws_availability_zones.all.names}"]
}
resource "aws_elb" "example" {
name = "terraform-asg-example"
availability_zones = ["${data.aws_availability_zones.all.names}"]
listener {
lb_port = 80
lb_protocol = "http"
instance_port = "${var.server_port}"
instance_protocol = "http"
}
}
View raw paste | Parent paste by: Not specified - Child paste by: Not specified | Reply |