You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since the infrastructure becomes a code (software), any code should be testable according to SDLC.
Then, we need to automate testing on the CloudFormation templates used in this repository.
Currently, I can suggest the following:
1. Syntax Validity
aws cloudformation validate-template is designed to check the syntax of the template, but it does not check that the values being passed on to properties are valid.
2. Operational Validity
TaskCat automates the testing of templates in multiple regions because, currently, the only method to check the operational validity of a template is to attempt to create a stack.. This is the same tool used internally by AWS teams to test the AWS Quick Start templates.
Whenever I have time, I should contribute in this great repository.
The text was updated successfully, but these errors were encountered:
Since the infrastructure becomes a code (software), any code should be testable according to SDLC.
Then, we need to automate testing on the CloudFormation templates used in this repository.
Currently, I can suggest the following:
1. Syntax Validity
aws cloudformation validate-template
is designed to check the syntax of the template, but it does not check that the values being passed on to properties are valid.2. Operational Validity
TaskCat automates the testing of templates in multiple regions because, currently, the only method to check the operational validity of a template is to attempt to create a stack.. This is the same tool used internally by AWS teams to test the AWS Quick Start templates.
Whenever I have time, I should contribute in this great repository.
The text was updated successfully, but these errors were encountered: