Files
terraform-docs/terraform/testdata/full-example/outputs.tf
Igor Rodionov 656f6a64d5 Fix output values with null
Signed-off-by: Igor Rodionov <goruha@gmail.com>
2024-03-25 12:05:56 +01:00

20 lines
236 B
HCL

output C {
description = "It's unquoted output."
value = "c"
}
output "A" {
description = "A description"
value = "a"
}
// B description
output "B" {
value = "b"
}
// D null result
output "D" {
value = null
}