blob: 3aaf37738f2d93e9270675d0b26bede308135c58 [file] [log] [blame]
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0
variable "foo" {
description = "foobar"
default = "bar"
}
variable "number" {
default = 42
}
variable "map" {
default = {
foo = "bar"
number = 42
}
}