correct true and false string values to fix manage_bundler config bug (#7219)
This commit is contained in:
parent
8ca3d94858
commit
8fd843fa91
|
@ -39,8 +39,8 @@ type opsworksLayerType struct {
|
|||
}
|
||||
|
||||
var (
|
||||
opsworksTrueString = "1"
|
||||
opsworksFalseString = "0"
|
||||
opsworksTrueString = "true"
|
||||
opsworksFalseString = "false"
|
||||
)
|
||||
|
||||
func (lt *opsworksLayerType) SchemaResource() *schema.Resource {
|
||||
|
|
Loading…
Reference in New Issue