Commit a35caa21 authored by Anton Babenko's avatar Anton Babenko Committed by GitHub

Merge pull request #7 from apparentlymart/patch-1

Fix incorrect subnet_id output expression
parents ee9c7ad1 0f3d09c1
......@@ -60,5 +60,5 @@ output "vpc_security_group_ids" {
output "subnet_id" {
description = "List of IDs of VPC subnets of instances"
value = ["${aws_instance.this.*.}"]
value = ["${aws_instance.this.*.subnet_id}"]
}
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