From 9c3c05a70c880162d007709de9576f74536a06d9 Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Fri, 17 Feb 2017 15:36:57 -0500 Subject: [PATCH] hclfmt on homepage configs --- website/source/index.html.erb | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/website/source/index.html.erb b/website/source/index.html.erb index 4783cdcb1..e8b0abe8f 100644 --- a/website/source/index.html.erb +++ b/website/source/index.html.erb @@ -214,22 +214,22 @@

resource "aws_elb" "frontend" {

-

name = "frontend-load-balancer"

-

listener {

-

instance_port = 8000

-

instance_protocol = "http"

-

lb_port = 80

-

lb_protocol = "http"

-

}

+

name = "frontend-load-balancer"

+

listener {

+

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

+

count = 5

-

ami = "ami-408c7f28"

-

instance_type = "t1.micro"

+

ami = "ami-408c7f28"

+

instance_type = "t1.micro"

}