https://github.com/jliscom/sample-cloudformation
Some thoughts/patterns for CloudFormation.
https://github.com/jliscom/sample-cloudformation
aws cloudformation
Last synced: about 1 year ago
JSON representation
Some thoughts/patterns for CloudFormation.
- Host: GitHub
- URL: https://github.com/jliscom/sample-cloudformation
- Owner: JLiscom
- License: mit
- Created: 2017-07-21T05:14:32.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-09-16T05:07:20.000Z (almost 9 years ago)
- Last Synced: 2025-04-08T13:19:50.112Z (about 1 year ago)
- Topics: aws, cloudformation
- Homepage:
- Size: 55.7 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sample-CloudFormation
## Naming scheme
I recommend always prefixing stack names, and exports with the environment the stack is a part of. IE `Prod-Web`, `Dev-DB`, `...`. This lets you groups environments together and avid collisions.
For CloudFormation files: use a `.cf.yml` or `.cf.json` as the extension to indicate the file is CloudFormation. `.template` is a generic term and has/could be used for other things. Editors may not know what format `.template` is in and cannot provide syntax highlighting.
`.cf.yml` and `.cf.json` has a benefit over simply `.yml` and `.json` because you can see its a CloudFormation template. Many projects with have lots of configuration files and it will save you an few accidental clicks. Plus it makes them easier to find.
## Variables
Do not go crazy with parameters. Use parameters for things that actually differ between environments. Keep it simple.
Use stack exports to track backplane information such as VPC and subnets. You can easily reference the output by convention along with an environment parameter to retrieve environment specific information
## Format
Use Yaml for CloudFormation you write. [It is so much better](https://www.trek10.com/blog/cloudformation-yaml-and-why-its-awesome/). Yaml is better if humans are writing CloudFormation. If your using a pre-parser it does not matter as much.
Yaml is a superset of JSON[[1]](https://stackoverflow.com/questions/1726802/what-is-the-difference-between-yaml-and-json-when-to-prefer-one-over-the-other). In regards to CloudFormation you can switch back and forth with an [AWS provided tool](https://github.com/awslabs/aws-cfn-template-flip).
Use `Sub` instead of `Join` to concatenate variables and text. Its newer and better[1+1=2].
## Patterns
### Producer/Consumer pattern
To leverage interconnectivity between resources, I generally do not recommend using IP based Security Groups(SG) except if they are broad(Summary masks). IE the public subnet is allowed to access this or this VPC is allows to access this.
For fine grain control, use a security group as a bus to facilitate security interconnectivity. Buses are used in computing to connect components with the minimal number of interconnection points. This is method is sometimes called `access security groups`.

In the above diagram, each resource has the following security groups attached to it.
| Resource | Security Groups |
| --- | --- |
| Bastion | Bastion SG, Bation Bus SG |
| Web App | Web App SG, DB Buss SG |
| DB | DB SG |
Being a consumer in this model is to be a member of the bus group. Being a member allows a resource to access the resource across the bus.
Being a producer is allowing access from a bus SG.
This may seem backwards at first. Think of the DB. The DB is a producer and the web app consumes the database. Oddly the Bastion is a consumer of management traffic the Web App produces.
A network interface by default can have up to 5 security groups attached [[1]](http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Appendix_Limits.html#vpc-limits-security-groups). More than enough to facilitate complicated solutions. This limit can be increased to 10 with some restrictions on number of group entries.
You can see examples of this in the templates in this repo.
## Why should you listen to me
- I have 3 AWS certs one of which is a pro level.
- I work in Professional Services so I basically do the same thing over and over with dozens of clients. This is the best way I have found to wire stuff up. This is OpenSource so if you have a better way please open an issue or a Pull Request.
- I have a classic Computer Science background. I prefer simplicity and first principal thought. Buses are used by hardware engineers over something like a full wire mesh do to simplicity and economic constraints. All I have done is simply realize you can do that with security groups.
## License
© 2017 - Distributed under the MIT License