From 6983a0414a070c86cc313679e390973de4825d07 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 24 May 2014 11:44:48 -0700 Subject: [PATCH] config: fix line endings on a test fixture --- config/test-fixtures/basic.tf | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/config/test-fixtures/basic.tf b/config/test-fixtures/basic.tf index 9eebc208a..cbb8f916c 100644 --- a/config/test-fixtures/basic.tf +++ b/config/test-fixtures/basic.tf @@ -1,15 +1,15 @@ -variable "foo" { - default = "bar"; - description = "bar"; -} - -resource "aws_security_group" "firewall" { -} - -resource aws_instance "web" { - ami = "${var.foo}" - security_groups = [ - "foo", - "${aws_security_group.firewall.foo}" - ] -} +variable "foo" { + default = "bar"; + description = "bar"; +} + +resource "aws_security_group" "firewall" { +} + +resource aws_instance "web" { + ami = "${var.foo}" + security_groups = [ + "foo", + "${aws_security_group.firewall.foo}" + ] +}