/
githubmirror
/
terraform
Обзор
Документация
Войти
/
githubmirror
/
terraform
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/command/testdata/test/mocking/main.tf
46 строк
640 B
Liam Cervante
terraform test: connect mock behaviour to test framework (#34205)
14 ноя 2023, 10:50
Не верифицирован
14 ноя 2023, 10:50
dedb296
Код
Авторство
О чём код?
terraform { required_providers { test = { source = "hashicorp/test" } } } provider "test" { alias = "primary" } provider "test" { alias = "secondary" } variable "instances" { type = number } variable "child_instances" { type = number } resource "test_resource" "primary" { provider = test.primary count = var.instances } resource "test_resource" "secondary" { provider = test.secondary count = var.instances } module "child" { count = var.instances source = "./child" providers = { test.primary = test.primary test.secondary = test.secondary } instances = var.child_instances }