/
githubmirror
/
terraform
Обзор
Документация
Войти
/
githubmirror
/
terraform
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/command/testdata/plan-invalid/main.tf
10 строк
320 B
Martin Atkins
Move command/ to internal/command/
18 май 2021, 00:09
18 май 2021, 00:09
ffe056b
Код
Авторство
О чём код?
resource "test_instance" "foo" { count = 5 } resource "test_instance" "bar" { # This is invalid because timestamp() returns an unknown value during plan, # but the "count" argument in particular must always be known during plan # so we can predict how many instances we will operate on. count = timestamp() }