terraform: reference an output so it isn't pruned during plan

This commit is contained in:
Mitchell Hashimoto
2016-11-07 13:56:56 -08:00
parent 6914d605c8
commit e6be4fefe8

View File

@@ -5,3 +5,6 @@ variable "map_in" {
us-west-2 = "ami-67890"
}
}
// We have to reference it so it isn't pruned
output "output" { value = "${var.map_in}" }