CloudFormation templates
This is a collection of sample CloudFormation templates, some of which are wrapped around Python Jinja2 templating.
CloudFormation yaml lacks control statements such as for-loops and conditional.
This makes organizing your AWS resources a bit tad repetitive.
Rather than using a 3rd party product like Terraform, which at the point of this writing does not support rollback, we thought we should just wrap CloudFormation files with Jinja templates.
This is not a replacement of CloudFormation, but rather an addition.
You still have to take the output yaml to CloudFormation whether through the AWS console or CLI.
Install jinja2-cli
pip install jinja2-cli
pip install jinja2-cli[yaml]
Fill in your own variables into a yaml file (example variables can be found in vars.yml
files).
Then pass both the template and the variables to jinja2
jinja2 vpc/template.yml vpc/vars.yml
Each folder contains a CloudFormation stack template and its variables.
They serve as examples of how to provision various AWS resources, and are not necessarily related to each other.
Your usage and needs may vary, but we hope these can help you in provisioning your resources.