8 lines
No EOL
208 B
HCL
8 lines
No EOL
208 B
HCL
module "config" {
|
|
for_each = var.configs
|
|
source = "../../docker/config"
|
|
stack_name = var.stack_name
|
|
name = each.key
|
|
value = each.value
|
|
debug_path = "${local.debug_path}/configs"
|
|
} |