Table of contents
Overview
Audience: For day-to-day operations and development…Prerequisites
- GitHub Repository Access: Ensure you have appropriate access to the
unkeyed/infrarepository. - Pull Request Process: All changes should follow the standard PR review process.
Steps
1. Create a Feature Branch
2. Make Your Changes
Each project’s deployment workflow file looks for file changes to itself, and changes to the project files. For example, the API workflow has the following…main.. so make egregious use of sandbox to validate your Pulumi changes.
3. Test Locally (if possible)
4. Commit and Push Changes
You should have git commit signing enabled, and use it!5. Create Pull Request
- Open a PR against the main branch
- Include a detailed description of the changes
- Request reviews from appropriate team members
6. CI/CD Pipeline Execution
Coordinating changes across stacks might be something to consider! If you’re doing maintenance on a cluster, does it need to be taken out of Global Accelerator first? DNS changes made before work can be made?7. Deployment Order
- Changes should typically be deployed to sandbox first to ensure the pulumi code doesn’t break but go with your gut
8. Monitor Deployments
- Check GitHub Actions logs for deployment status
- Verify resources in AWS Console
- Check application functionality

