unbounce / iidy

iidy (Is it done yet?) -- CloudFormation with Confidence
MIT License
52 stars 7 forks source link

Handling of non-octal strings with leading zeros is incorrect when interpolated into another string #126

Closed jpb closed 6 years ago

jpb commented 6 years ago
$ cat octal.yaml
$defs:
  num: '0012345'

foo: "a {{ num }} b"

$ iidy render octal.yaml
foo: a '0012345' b

Expected:

foo: a 0012345 b

Related to #69