terraform/internal/command/testdata/test/shared_state_object/main.tf
Liam Cervante 9742f22c4e
Introduce 'run' keyword for referencing outputs from earlier run blocks (#33683)
* introduce 'run' keyword for referencing outputs from earlier run blocks

* fix code consistency
2023-08-16 11:06:00 +02:00

12 lines
148 B
HCL

variable "input" {
type = string
}
resource "test_resource" "foo" {
value = var.input
}
output "value" {
value = test_resource.foo.value
}