Rename disableHash to disableNameSuffixHash

This commit is contained in:
Jeffrey Regan
2018-10-30 11:36:00 -07:00
parent 40e0bbeec2
commit a8fbe35ecf
4 changed files with 7 additions and 7 deletions

View File

@@ -249,8 +249,8 @@ type GeneratorOptions struct {
// resource generation. Default at time of writing: {'sh', '-c'}.
Shell []string `json:"shell,omitempty" yaml:"shell,omitempty"`
// DisableNameHash if true disables the default behavior of adding a
// DisableNameSuffixHash if true disables the default behavior of adding a
// suffix to the names of generated resources that is a hash of the
// resource contents.
DisableHash bool `json:"disableHash,omitempty" yaml:"disableHash,omitempty"`
DisableNameSuffixHash bool `json:"disableNameSuffixHash,omitempty" yaml:"disableNameSuffixHash,omitempty"`
}