Variable Types
variable "a-string" {
type = string
}variable "a-number" {
type = number
}variable "a-bool" {
type = bool
}Last updated
Was this helpful?
variable "a-string" {
type = string
}variable "a-number" {
type = number
}variable "a-bool" {
type = bool
}Last updated
Was this helpful?
Was this helpful?
variable "a-list" {
type = list(any)
default = [1, 2, 3]
}variable "a-set" {
type = set(any)
default = [1, 2, 3]
}variable "a-map" {
type = map(string)
default = {
mykey = "my value"
}
}