/
githubmirror
/
terraform
Обзор
Документация
Войти
/
githubmirror
/
terraform
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/command/testdata/test/with_interrupt/main.tf
24 строки
362 B
Liam Cervante
testing framework: introduce interrupts for stopping tests (#33477)
10 июл 2023, 16:53
Не верифицирован
10 июл 2023, 16:53
4862812
Код
Авторство
О чём код?
variable "interrupts" { type = number } resource "test_resource" "primary" { value = "primary" } resource "test_resource" "secondary" { value = "secondary" interrupt_count = var.interrupts depends_on = [ test_resource.primary ] } resource "test_resource" "tertiary" { value = "tertiary" depends_on = [ test_resource.secondary ] }