24 lines
260 B
Plaintext
24 lines
260 B
Plaintext
# Required
|
|
variable "foo" {
|
|
}
|
|
|
|
# Optio
|
|
foo = "bar"
|
|
}
|
|
}
|
|
|
|
# Complex Object Types
|
|
variable "object_map" {
|
|
type = map(object({
|
|
foo = string,
|
|
bar = any
|
|
}))
|
|
}
|
|
|
|
variable "object_list" {
|
|
type = list(object({
|
|
foo = string,
|
|
bar = any
|
|
}))
|
|
}
|