/
githubmirror
/
terraform
Обзор
Документация
Войти
/
githubmirror
/
terraform
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/command/testdata/dynamic-module-sources/provider-function-in-validation/main.tf
20 строк
373 B
Austin Valle
prune validate nodes
30 апр 2026, 22:01
30 апр 2026, 22:01
d2c9214
Код
Авторство
О чём код?
terraform { required_providers { test = { source = "test" } } } variable "module_input" { type = string validation { condition = provider::test::is_true(var.module_input == "hello") error_message = "The module_input variable must be set to \"hello\"" } } module "example" { source = "./modules/example" in = var.module_input }