Skip to content

Commit

Permalink
[worker] Slience some TF 0.11 warnings
Browse files Browse the repository at this point in the history
Fixes #180
  • Loading branch information
gozer committed Apr 10, 2018
1 parent f4d0f3c commit b77580d
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 b77580d

Please sign in to comment.