Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Signed-off-by: Pedro Tôrres <t0rr3sp3dr0@gmail.com>
  • Loading branch information
t0rr3sp3dr0 committed Sep 19, 2019
1 parent 44f516a commit 1cf19c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform_utils/hcl.go
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ func terraform12Adjustments(formatted []byte, mapsObjects map[string]struct{}) [

// Sanitize name for terraform style
func TfSanitize(name string) string {
name = strings.Replace(name, "*.", "", -1)
name = strings.Replace(name, "*.", "----", -1)
name = strings.Replace(name, " ", "", -1)
//name = strings.Replace(name, "-", "_", -1)
name = strings.Replace(name, ".", "--", -1)
Expand Down

0 comments on commit 1cf19c4

Please sign in to comment.