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
No known key found for this signature in database
GPG Key ID: 744E147AA52F5B0A
1 changed files with 3 additions and 0 deletions

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}" }