Skip to content

Commit

Permalink
fix: omit empty leaving behind variables (#807)
Browse files Browse the repository at this point in the history
* fix: omit empty leaving behind variables

* omitempty
  • Loading branch information
jakeyheath authored Mar 7, 2023
1 parent 12761a4 commit fa0402b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/v2/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ type Component struct {
Kind *ComponentKind `yaml:"kind,omitempty"`
ModuleSource *string `yaml:"module_source,omitempty"`
ModuleName *string `yaml:"module_name,omitempty"`
Variables []string `yaml:"variables,omitempty"`
Variables []string `yaml:"variables"`
}

type Providers struct {
Expand Down

0 comments on commit fa0402b

Please sign in to comment.