You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/internal/command/testdata/show-json/unknown-output/main.tf

20 lines
222 B

output "foo" {
value = "hello"
}
output "bar" {
value = tolist([
"hello",
timestamp(),
"world",
])
}
output "baz" {
value = {
greeting: "hello",
time: timestamp(),
subject: "world",
}
}