September 23, 2016 by Paulina Budzoń
September 16, 2016 by Paulina Budzoń
Validating your template before uploading it to CloudFormation to create resources is probably the best thing you can do to avoid the dreaded UPDATE_ROLLBACK_IN_PROGRESS status.
This can easily be done without creating the stack, by using the validate-template
AWS CLI command.
September 9, 2016 by Paulina Budzoń
If you’ve ever wrote AWS CloudFormation template, you probably know that it can be a daunting task. Luckily, it can be much easier, if you use Python’s library “Troposphere”.
Troposphere lets you create Python objects in place of CloudFormation elements, does some basic validation of your input and generates the JSON template for CloudFormation for you. It is much easier and cleaner to use that writing JSON templates manually.