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

View File

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