Skip to content
This repository has been archived by the owner on Dec 5, 2020. It is now read-only.

Commit

Permalink
Merge pull request #3 from mcuadros/json
Browse files Browse the repository at this point in the history
ignition_config: render to non-indented json
  • Loading branch information
mcuadros authored Jun 30, 2017
2 parents 614cea5 + a40ef43 commit 7f61ade
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ignition/resource_ignition_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ func renderConfig(d *schema.ResourceData, c *cache) (string, error) {
return "", err
}

bytes, err := json.MarshalIndent(i, " ", " ")
bytes, err := json.Marshal(i)

if err != nil {
return "", err
Expand Down

0 comments on commit 7f61ade

Please sign in to comment.