terraform/internal/command/testdata/test/nested_unknown_values/main.tf

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
257 B
Terraform
Raw Permalink Normal View History

variable "input" {
type = object({
one = string,
two = string,
})
}
resource "test_resource" "resource" {
value = var.input.two
}
output "one" {
value = test_resource.resource.id
}
output "two" {
value = test_resource.resource.value
}