cfstacks / stacks

Manage CloudFormation sanely with templates written in YAML
MIT License
42 stars 16 forks source link

Stacks not compatible with YAML from CloudFormation #101

Closed takeda closed 6 years ago

takeda commented 7 years ago

I'm not sure if I'm doing something incorrectly, but looks like stacks can't parse CloudFormation YAML?

yaml.constructor.ConstructorError: could not determine a constructor for the tag '!Ref' in "<unicode string>", line 54, column 18: CidrBlock: !Ref VPCCIDR ^

alekna commented 7 years ago

Please provide us with unparsable CloudFormation YAML

vaijab commented 7 years ago

According to the yaml spec:

Explicit typing is denoted with a tag using the exclamation point (“!”) symbol.

@takeda try single quoting '!Ref: ...'

alekna commented 6 years ago

Fixed in 41e8197