github.com/mineiros-io/terradoc@v0.0.9-0.20220711062319-018bd4ae81f5/templates/markdown/variable.md (about)

     1  {{define "variable"}}- [**`{{.Name}}`**](#var-{{.Name}}): *({{if .Required}}**Required**{{else}}Optional{{end}} `{{template "variableType" .Type}}`{{if .ForcesRecreation}}, Forces new resource{{end}})*<a name="var-{{.Name}}"></a>
     2  
     3  {{- if .Description}}{{- newline}}{{indent 2 .Description}}{{end}}
     4  
     5  {{- if .Default}}{{- newline}}  Default is `{{printf "%s" .Default}}`.{{- end}}
     6  
     7  {{- if .ReadmeExample}}{{- newline}}  Example:
     8  
     9  {{printf "```hcl\n%s\n```" .ReadmeExample | indent 2}}{{end -}}
    10  {{- newline -}}
    11  {{end}}