mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-01 01:00:52 -05:00
10 lines
117 B
HCL
10 lines
117 B
HCL
variable "foo" {}
|
|
variable "bar" {}
|
|
|
|
output "foo" {
|
|
value = "${var.foo}"
|
|
}
|
|
output "bar" {
|
|
value = "${var.bar}"
|
|
}
|