awslabs / aws-cfn-template-flip

Tool for converting AWS CloudFormation templates between JSON and YAML formats.
Apache License 2.0
994 stars 142 forks source link

Fix string with start 0 #79

Closed koiker closed 5 years ago

koiker commented 5 years ago

This fix solves the problem of strings which start with 0 (zero) sometimes get quoted and sometimes not. (This is a issue with pyYaml that detects the value as integer or octal.

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.

stilvoid commented 5 years ago

Thanks!