add template for directives
This commit is contained in:
23
fuzz/corpus/3d68e7f9909f33cfafd92902029f77a1ec33c4c3
Normal file
23
fuzz/corpus/3d68e7f9909f33cfafd92902029f77a1ec33c4c3
Normal file
@@ -0,0 +1,23 @@
|
||||
# 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
|
||||
}))
|
||||
}
|
||||
Reference in New Issue
Block a user