config: fix line endings on a test fixture

This commit is contained in:
Mitchell Hashimoto 2014-05-24 11:44:48 -07:00
parent bb0980f5ba
commit 6983a0414a
1 changed files with 15 additions and 15 deletions

View File

@ -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}"
]
}