mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-03 22:10:40 -05:00
* introduce 'run' keyword for referencing outputs from earlier run blocks * fix code consistency
12 lines
148 B
HCL
12 lines
148 B
HCL
|
|
variable "input" {
|
|
type = string
|
|
}
|
|
|
|
resource "test_resource" "foo" {
|
|
value = var.input
|
|
}
|
|
|
|
output "value" {
|
|
value = test_resource.foo.value
|
|
}
|