Getting Started with AWS Automation
A practical introduction to structuring AWS automation for a technical blog example.
Write the full article here.
Why automate?
Manual cloud changes are difficult to review and repeat. A Git-based workflow gives teams a clearer history of what changed and why.
Suggested workflow
- Describe infrastructure as code.
- Open a pull request.
- Run validation checks.
- Review the plan.
- Merge and deploy.
terraform fmt -check
terraform validate
terraform plan