iann0036 / AWSConsoleRecorder

Records actions made in the AWS Management Console and outputs the equivalent CLI/SDK commands and CloudFormation/Terraform templates.
MIT License
1.42k stars 87 forks source link

Apply linting to the CFN templates through cfn-lint #20

Open neoghostz opened 5 years ago

neoghostz commented 5 years ago

Idea behind this would be to enforce the strongly typed values for certain resources. At present the following are put as Int rather than Strings RDS: Type: "AWS::RDS::DBInstance" Properties: AllocatedStorage: 100 BackupRetentionPeriod: 7 Port: 3306

Could be possibly a bug between cfn-lint and the Cloudformation JSON spec.