mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-02 12:17:39 -06:00
8 lines
90 B
Terraform
8 lines
90 B
Terraform
|
variable "input" {
|
||
|
type = string
|
||
|
}
|
||
|
|
||
|
output "foo" {
|
||
|
value = "foo value ${var.input}"
|
||
|
}
|