/
githubmirror
/
terraform
Обзор
Документация
Войти
/
githubmirror
/
terraform
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/command/testdata/show-json-sensitive/main.tf
21 строка
384 B
Martin Atkins
Move command/ to internal/command/
18 май 2021, 00:09
18 май 2021, 00:09
ffe056b
Код
Авторство
О чём код?
provider "test" { region = "somewhere" } variable "test_var" { default = "bar" sensitive = true } resource "test_instance" "test" { // this variable is sensitive ami = var.test_var // the password attribute is sensitive in the showFixtureSensitiveProvider schema. password = "secret" count = 3 } output "test" { value = var.test_var sensitive = true }