unbounce / iidy

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

Non-octal strings are not interpolated properly in stack args properties #139

Closed jpb closed 6 years ago

jpb commented 6 years ago

Importing a value that is an octal-like string does not interpolate properly into stack args properties, for example:

$defs:
  accountId: 00123456789

ServiceRoleArn: arn:aws:iam::{{ accountId }}:role/role-name

Output from iidy create-stack:

...
 IAM Service Role:        arn:aws:iam::$0string 00123456789:role/role-name
...

Related to #69, #126