/
githubmirror
/
terraform
Обзор
Документация
Войти
/
githubmirror
/
terraform
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/stacks/stackruntime/testdata/mainbundle/test/const-variable-in-component/const-variable-in-component.tf
18 строк
257 B
Daniel Schmidt
add tests for dynamic module sources in stacks
05 мар 2026, 18:24
05 мар 2026, 18:24
2077b53
Код
Авторство
О чём код?
terraform { required_providers { testing = { source = "hashicorp/testing" version = "0.1.0" } } } variable "input" { type = string const = true default = "hello" } resource "testing_resource" "data" { value = var.input }