mirror of
https://github.com/terraform-docs/terraform-docs.git
synced 2026-03-27 12:58:35 +07:00
15 lines
188 B
HCL
15 lines
188 B
HCL
output C {
|
|
description = "It's unquoted output."
|
|
value = "c"
|
|
}
|
|
|
|
output "A" {
|
|
description = "A description"
|
|
value = "a"
|
|
}
|
|
|
|
// B description
|
|
output "B" {
|
|
value = "b"
|
|
}
|