- Open the stack in the console and launch Infrastructure Composer
- Edit the template on the visual canvas or in the code view (YAML/JSON)
- Validate and transfer the edited template to S3 for CloudFormation to use
- Update the stack and confirm outputs
- An existing CloudFormation stack you can update
- Appropriate IAM permissions to update stacks and create S3 objects

- A zoomable canvas to visualize resource relationships
- A code (template) view to edit YAML or JSON directly
- Built-in validation to check syntax and basic schema before applying changes
- Switch to the template (code) view to make direct edits in YAML or to convert to JSON.
- Use the built-in validator before applying changes to ensure the template is syntactically correct.
- In the demo, output descriptions were simplified: BucketArn → “ARN” and DeveloperBucketLabel → “Developer name and bucket name”.

Infrastructure Composer uploads the edited template to an Amazon S3 transfer bucket (created automatically) so AWS CloudFormation can use it for the update. You can change the transfer bucket name if needed, but keeping the default is usually simplest.
- After confirming the transfer bucket, CloudFormation continues the update flow.
- The console will return you to the stack parameter step; existing parameter values are preserved unless you change them.
- Verify or change parameter values as needed before submitting the update.




- Choose Update stack → Replace current template → Upload a template file.
- Provide the original template file. Uploading the original will reset the stack template to its previous contents.
Summary
Use Infrastructure Composer to visually edit templates or make direct code changes, validate the template, and let Composer stage the edited template to S3 for CloudFormation to use. Then continue the CloudFormation update flow to apply changes, confirm parameters, and verify outputs. This workflow is ideal for quick edits, iterative template tweaks, or using a visual canvas to understand resource relationships.
Links and references
- AWS CloudFormation documentation: https://docs.aws.amazon.com/cloudformation/
- Amazon S3 documentation: https://docs.aws.amazon.com/s3/
- Learn more about Infrastructure as Code and CloudFormation in AWS learning resources.