You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
variable"example" {
type=object({
example =optional(string)
})
}
But this breaks documentation generation:
variable"example" {
type=object({
example =optional(string, "")
})
}
Problem
If a module contains any variable using the optional(TYPE, DEFAULT) form, no documentation is generated at all. This includes unrelated variables — the entire module's documentation output is empty.