/
githubmirror
/
terraform
Обзор
Документация
Войти
/
githubmirror
/
terraform
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/command/testdata/test/variable_references/main.tftest.hcl
42 строки
817 B
Liam Cervante
terraform test: move variable evaluation into the terraform test graph (#37205)
06 июн 2025, 11:11
Не верифицирован
06 июн 2025, 11:11
53afa2c
Код
Авторство
О чём код?
variables { default = "double" ref_one = var.default ref_two = run.secondary.value } run "primary" { variables { input_one = var.default input_two = var.default } assert { condition = test_resource.resource.value == "${var.default} - ${var.input_two}" error_message = "bad concatenation" } } run "secondary" { variables { input_one = var.default input_two = var.global # This test requires this passed in as a global var. } assert { condition = test_resource.resource.value == "double - ${var.global}" error_message = "bad concatenation" } } run "tertiary" { variables { input_one = var.ref_one input_two = var.ref_two } assert { condition = output.value == "double - double - ${var.global}" error_message = "bad concatenation" } }