correct true and false string values to fix manage_bundler config bug (#7219)

This commit is contained in:
David Lanner 2016-06-29 04:51:26 -04:00 committed by Paul Stack
parent 8ca3d94858
commit 8fd843fa91
1 changed files with 2 additions and 2 deletions

View File

@ -39,8 +39,8 @@ type opsworksLayerType struct {
}
var (
opsworksTrueString = "1"
opsworksFalseString = "0"
opsworksTrueString = "true"
opsworksFalseString = "false"
)
func (lt *opsworksLayerType) SchemaResource() *schema.Resource {