Skip to content

Commit 0a9253a

Browse files
committed
Removed placement_group from outputs
1 parent a35caa2 commit 0a9253a

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

outputs.tf

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@ output "availability_zone" {
88
value = ["${aws_instance.this.*.availability_zone}"]
99
}
1010

11-
output "placement_group" {
12-
description = "List of placement groups of instances"
13-
value = ["${aws_instance.this.*.placement_group}"]
14-
}
11+
// GH issue: https://github.com/terraform-aws-modules/terraform-aws-ec2-instance/issues/8
12+
//output "placement_group" {
13+
// description = "List of placement groups of instances"
14+
// value = ["${element(concat(aws_instance.this.*.placement_group, list("")), 0)}"]
15+
//}
1516

1617
output "key_name" {
1718
description = "List of key names of instances"

0 commit comments

Comments
 (0)