mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 01:41:48 -06:00
16 lines
153 B
HCL
16 lines
153 B
HCL
# Required
|
|
variable "foo" {
|
|
}
|
|
|
|
# Optional
|
|
variable "bar" {
|
|
default = "baz"
|
|
}
|
|
|
|
# Mapping
|
|
variable "map" {
|
|
default = {
|
|
foo = "bar"
|
|
}
|
|
}
|