Files
opentf/website/docs/cli/commands/test/examples/variables/main.tf
2023-12-01 08:34:59 +00:00

5 lines
76 B
HCL

variable "name" {}
output "greeting" {
value = "Hello ${var.name}!"
}