Skip to content

Commit

Permalink
use DETECTIVE as default
Browse files Browse the repository at this point in the history
  • Loading branch information
bmorrissirromb committed May 14, 2024
1 parent 8a4cc5f commit a85f365
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rdk/rdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -1766,7 +1766,7 @@ def deploy(self):
},
{
"ParameterKey": "EvaluationMode",
"ParameterValue": rule_params["EvaluationMode"],
"ParameterValue": rule_params.get("EvaluationMode", "DETECTIVE"),
},
]
my_cfn = my_session.client("cloudformation")
Expand Down Expand Up @@ -2028,7 +2028,7 @@ def deploy(self):
},
{
"ParameterKey": "EvaluationMode",
"ParameterValue": rule_params["EvaluationMode"],
"ParameterValue": rule_params.get("EvaluationMode", "DETECTIVE"),
},
]
layers = self.__get_lambda_layers(my_session, self.args, rule_params)
Expand Down

0 comments on commit a85f365

Please sign in to comment.