mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-27 04:44:09 -04:00
5 lines
93 B
Terraform
5 lines
93 B
Terraform
|
|
module "example" {
|
||
|
|
for_each = toset(["one", "two"])
|
||
|
|
source = "./modules/${each.key}"
|
||
|
|
}
|