January 2017
Beginner
206 pages
4h 33m
English
If we were not using AWS in this book or if we would want to go the more complicated (but certainly more flexible) way, we would use our very own load balancer. But we won't, because we can simply take Elastic Load Balancer (ELB) service of AWS and put application servers behind it.
This means we will add yet another resource to the application module. Add the following configuration right after the null_resource provisioners:
resource "aws_elb" "load-balancer" { name = "application-load-balancer" subnets = ["${var.subnets}"] security_groups = ["${aws_security_group.allow_http.id}"] listener { instance_port = 80 instance_protocol = "http" lb_port = 80 lb_protocol = "http" } health_check { healthy_threshold ...Read now
Unlock full access