/
githubmirror
/
terraform
Обзор
Документация
Войти
/
githubmirror
/
terraform
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/command/testdata/test/variable_references/main.tf
15 строк
232 B
Liam Cervante
terraform test: move variable evaluation into the terraform test graph (#37205)
06 июн 2025, 11:11
Не верифицирован
06 июн 2025, 11:11
53afa2c
Код
Авторство
О чём код?
variable "input_one" { type = string } variable "input_two" { type = string } resource "test_resource" "resource" { value = "${var.input_one} - ${var.input_two}" } output "value" { value = test_resource.resource.value }