/
githubmirror
/
terraform
Обзор
Документация
Войти
/
githubmirror
/
terraform
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/command/testdata/plan-provider-input/main.tf
20 строк
322 B
Kristin Laemmert
terraform: use hcl.MergeBodies instead of configs.MergeBodies for pro… (#29000)
25 июн 2021, 15:48
Не верифицирован
25 июн 2021, 15:48
0960106
Код
Авторство
О чём код?
variable "users" { default = { one = "onepw" two = "twopw" } } provider "test" { url = "example.com" dynamic "auth" { for_each = var.users content { user = auth.key password = auth.value } } } resource "test_instance" "test" {}