Description
Is your feature request related to a problem? Please describe.
In its current form, cfn-guard checks the Cloudformation script without any input.
Example, Lets say I have a Cloudformation script similar to the following (simplified version)
Parameters:
RDSEncryption:
Type: String
Resources:
RDSPostgressDB:
Type: AWS::RDS::DBInstance
Properties:
StorageEncrypted: !Ref RDSEncryption
I want to create an RDS Database and I have a CF parameter input for encryption (true/false). Currently there is no way in cfn-guard to verify that the RDS will be created using encryption. I can only verify that the StorageEncrypted will have the value "RDSEncryption" (please correct me if I'm wrong)
Describe the solution you'd like
I would prefer an option to provide a json document with the CF parameter inputs and be able to check the Cloudformation script after all those values have been implemented.
The example I gave above would look like:
rules:
AWS::RDS::DBInstance StorageEncrypted == true
input.json:
[
{
"ParameterKey": "RDSEncryption",
"ParameterValue": "true"
}
]
cfn-guard:
cargo run -- -t rds.yaml -r rules -i input.json
cfn-guard will change the RDSEncryption
Rerefence with the input true
and will be able to check against that