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/cloud/testdata/apply-json-with-outputs/main.tf

23 lines
293 B

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"
}
}
}