Commit 0a9253a5 authored by Anton Babenko's avatar Anton Babenko

Removed placement_group from outputs

parent a35caa21
......@@ -8,10 +8,11 @@ output "availability_zone" {
value = ["${aws_instance.this.*.availability_zone}"]
}
output "placement_group" {
description = "List of placement groups of instances"
value = ["${aws_instance.this.*.placement_group}"]
}
// GH issue: https://github.com/terraform-aws-modules/terraform-aws-ec2-instance/issues/8
//output "placement_group" {
// description = "List of placement groups of instances"
// value = ["${element(concat(aws_instance.this.*.placement_group, list("")), 0)}"]
//}
output "key_name" {
description = "List of key names of instances"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment