13 lines
172 B
HCL
13 lines
172 B
HCL
variable "amap" {
|
|
type = map(string)
|
|
}
|
|
|
|
variable "othermap" {
|
|
type = map(string)
|
|
}
|
|
|
|
resource "aws_instance" "foo" {
|
|
tags = "${var.amap}"
|
|
meta = "${var.othermap}"
|
|
}
|