Skip to content

Commit

Permalink
Merge pull request #181 from gozer/issue/180/worker-warnings-splat
Browse files Browse the repository at this point in the history
[worker] Slience some TF 0.11 warnings
  • Loading branch information
tinnightcap authored Apr 10, 2018
2 parents f4d0f3c + b77580d commit a0a00f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions worker/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ output "role" {
}

output "autoscaling_group" {
value = "${aws_autoscaling_group.asg.id}"
value = "${element(conact(aws_autoscaling_group.asg.*.id, list("")),0)}"
}

output "autoscaling_group_arn" {
value = "${aws_autoscaling_group.asg.arn}"
value = "${element(conact(aws_autoscaling_group.asg.*.arn, list("")),0)}"
}

0 comments on commit a0a00f7

Please sign in to comment.