mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-24 11:02:30 -05:00
10 lines
131 B
HCL
10 lines
131 B
HCL
variable "numbers" {
|
|
type = set(string)
|
|
}
|
|
|
|
module "mod" {
|
|
source = "./mod"
|
|
for_each = var.numbers
|
|
val = each.key
|
|
}
|