Skip to content

Commit 876a465

Browse files
committed
Use tab for variable block indentation
1 parent 427d9ad commit 876a465

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

generator.go

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,9 @@ var tfFileExt = "*.tf"
1717
var dstFile = "./variables.tf"
1818
var varTemplate = template.Must(template.New("var_file").Parse(`{{range .}}
1919
variable "{{ . }}" {
20-
description = ""
20+
description = ""
2121
}
22-
{{end}}
23-
`))
22+
{{end}}`))
2423

2524
func init() {
2625
replacer = strings.NewReplacer(":", ".",

0 commit comments

Comments
 (0)