mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-21 10:47:34 -05:00
* 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
23 lines
293 B
HCL
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"
|
|
}
|
|
}
|
|
}
|