terraform/internal/command/testdata/plan-provider-input/main.tf

20 lines
322 B
HCL

variable "users" {
default = {
one = "onepw"
two = "twopw"
}
}
provider "test" {
url = "example.com"
dynamic "auth" {
for_each = var.users
content {
user = auth.key
password = auth.value
}
}
}
resource "test_instance" "test" {}