/
githubmirror
/
terraform
Обзор
Документация
Войти
/
githubmirror
/
terraform
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/stacks/stackruntime/testdata/mainbundle/test/plan-variable-defaults/plan-variable-default.tfcomponent.hcl
31 строка
398 B
Liam Cervante
stacks: rename .tfstack files to .tfcomponent (#37013)
15 май 2025, 09:33
Не верифицирован
15 май 2025, 09:33
a80220d
Код
Авторство
О чём код?
variable "beep" { type = string default = "BEEP" } output "beep" { type = string value = var.beep } stack "specified" { source = "./child" inputs = { boop = var.beep } } stack "defaulted" { source = "./child" inputs = {} } output "specified" { type = string value = stack.specified.result } output "defaulted" { type = string value = stack.defaulted.result }