blob: 4211ba3524620f45c52adbdc15c2a8725cdda332 [file] [log] [blame]
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" {}