mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-01 11:47:07 -06:00
12 lines
126 B
Terraform
12 lines
126 B
Terraform
|
variable "empty_string" {
|
||
|
default = ""
|
||
|
}
|
||
|
|
||
|
variable "empty_list" {
|
||
|
default = []
|
||
|
}
|
||
|
|
||
|
variable "empty_map" {
|
||
|
default = {}
|
||
|
}
|