Skip to content

Commit

Permalink
perf: reduce JSON CloudFormation template size
Browse files Browse the repository at this point in the history
  • Loading branch information
PatMyron authored and rubenfonseca committed Apr 14, 2022
1 parent 727a18a commit f893af7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloudformation/template.go
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ func NewTemplate() *Template {
// JSON converts an AWS CloudFormation template object to JSON
func (t *Template) JSON() ([]byte, error) {

j, err := json.MarshalIndent(t, "", " ")
j, err := json.MarshalIndent(t, "", " ")
if err != nil {
return nil, err
}
Expand Down

0 comments on commit f893af7

Please sign in to comment.