blob: 912431922a7bfbcfc7a86d9a67d80068a4887dea [file] [log] [blame]
variable "amap" {
type = map(string)
}
variable "othermap" {
type = map(string)
}
resource "aws_instance" "foo" {
tags = "${var.amap}"
meta = "${var.othermap}"
}