/
githubmirror
/
terraform
Обзор
Документация
Войти
/
githubmirror
/
terraform
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/stacks/stackruntime/testdata/mainbundle/test/complex-inputs/main.tf
21 строка
355 B
Liam Cervante
stacks: apply nested default values to inputs (#35349)
18 июн 2024, 13:03
Не верифицирован
18 июн 2024, 13:03
b646dff
Код
Авторство
О чём код?
terraform { required_providers { testing = { source = "hashicorp/testing" version = "0.1.0" } } } variable "input" { type = list(object({ id = string value = string })) } resource "testing_resource" "data" { count = length(var.input) id = var.input[count.index].id value = var.input[count.index].value }