diff --git a/website/source/index.html.erb b/website/source/index.html.erb index aecfce1be..5d5f70cad 100644 --- a/website/source/index.html.erb +++ b/website/source/index.html.erb @@ -178,23 +178,23 @@
resource "aws_elb" "frontend" {
-name = "frontend-load-balancer"
+resource "aws_elb" "frontend" {
+name = "frontend-load-balancer"
listener {
-instance_port = 8000
-instance_protocol = "http"
-lb_port = 80
-lb_protocol = "http"
+instance_port = 8000
+instance_protocol = "http"
+lb_port = 80
+lb_protocol = "http"
}
-
instances = ["${aws_instance.app.*.id}"]
+instances = ["${aws_instance.app.*.id}"]
}
-
resource "aws_instance" "app" {
-count = 5
+resource "aws_instance" "app" {
+count = 5
-
ami = "ami-043a5034"
-instance_type = "m1.small"
+ami = "ami-043a5034"
+instance_type = "m1.small"
}