15 lines
169 B
Terraform
15 lines
169 B
Terraform
|
|
variable "a" {
|
||
|
|
default = "foo"
|
||
|
|
type = string
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "b" {
|
||
|
|
default = []
|
||
|
|
type = list(string)
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "c" {
|
||
|
|
default = {}
|
||
|
|
type = map(string)
|
||
|
|
}
|