Skip to content

Commit

Permalink
Removed splat braces
Browse files Browse the repository at this point in the history
  • Loading branch information
jamtur01 committed Jul 20, 2017
1 parent 309e897 commit b22e083
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Expand Up @@ -32,7 +32,7 @@ resource "aws_elb" "web" {
lb_protocol = "http"
}

instances = ["${aws_instance.web.*.id}"]
instances = "${aws_instance.web.*.id}"
}

resource "cloudflare_record" "web" {
Expand Down

1 comment on commit b22e083

@richardx14
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi James. I needed to add those splat braces back in to make this work. Have I done something wrong elsewhere or is this a versioning issue? Many thanks.

Please sign in to comment.