8 lines
90 B
Terraform
8 lines
90 B
Terraform
|
variable "input" {
|
||
|
type = string
|
||
|
}
|
||
|
|
||
|
output "foo" {
|
||
|
value = "foo value ${var.input}"
|
||
|
}
|