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

pull/9973/head
Mitchell Hashimoto 10 years ago
parent 6914d605c8
commit e6be4fefe8
No known key found for this signature in database
GPG Key ID: 744E147AA52F5B0A

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

Loading…
Cancel
Save