mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-27 17:06:27 -06:00
13 lines
160 B
Terraform
13 lines
160 B
Terraform
|
variable "amap" {
|
||
|
type = "map"
|
||
|
}
|
||
|
|
||
|
variable "othermap" {
|
||
|
type = "map"
|
||
|
}
|
||
|
|
||
|
resource "aws_instance" "foo" {
|
||
|
tags = "${var.amap}"
|
||
|
meta = "${var.othermap}"
|
||
|
}
|