mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-24 11:02:03 -04:00
25 lines
266 B
HCL
25 lines
266 B
HCL
|
|
variable "foo" {
|
|
}
|
|
|
|
variable "bar" {
|
|
default = "hello"
|
|
}
|
|
|
|
variable "baz" {
|
|
type = list
|
|
}
|
|
|
|
variable "bar-baz" {
|
|
default = []
|
|
type = list(string)
|
|
}
|
|
|
|
variable "cheeze_pizza" {
|
|
description = "Nothing special"
|
|
}
|
|
|
|
variable "π" {
|
|
default = 3.14159265359
|
|
}
|