1variable "amis" {
2  type = map(string)
3}
4
5resource "null_resource" "noop" {}
6
7output "amis_out" {
8  value = var.amis
9}
10