mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-04 13:17:43 -06:00
21 lines
278 B
HCL
21 lines
278 B
HCL
variable "string" {
|
|
default = "foo"
|
|
type = string
|
|
}
|
|
|
|
variable "list" {
|
|
default = []
|
|
type = list(string)
|
|
}
|
|
|
|
variable "map" {
|
|
default = {}
|
|
type = map(string)
|
|
}
|
|
|
|
resource "aws_instance" "bar" {
|
|
string = var.string
|
|
list = var.list
|
|
map = var.map
|
|
}
|