mirror of
https://github.com/hashicorp/terraform.git
synced 2026-02-12 23:43:17 -05:00
9 lines
117 B
HCL
9 lines
117 B
HCL
variable "foo" {}
|
|
variable "bar" {}
|
|
|
|
output "foo" {
|
|
value = "${var.foo}"
|
|
}
|
|
output "bar" {
|
|
value = "${var.bar}"
|
|
}
|