Files
opentf/internal/cloud/testdata/apply-json-with-outputs/main.tf
Sebastian Rivera de574ae6d4 Initial implementation of structured logging in cloud backend (#32504)
* Implementation of structured logging.

These are the changes that enable the cloud backend to consume
structured logs and make use of the new plan renderer. This will enable
CLI-driven runs to view the structured output in the Terraform Cloud UI.

* Cloud structured logging unit tests

* Remove deferred logs logic, fix minor issues

Color formatting fixes, log type stop lists, default behavior for logs
that are unknown

* Use service disco path in redacted plan url
2023-02-09 13:35:48 +01:00

23 lines
293 B
HCL

resource "null_resource" "foo" {}
output "simple" {
value = ["some", "list"]
}
output "secret" {
value = "my-secret"
sensitive = true
}
output "complex" {
value = {
keyA = {
someList = [1, 2, 3]
}
keyB = {
someBool = true
someStr = "hello"
}
}
}