chore(secrets): Improve the status_extended with more information (#1937)

Co-authored-by: Sergio Garcia <sergargar1@gmail.com>
This commit is contained in:
Fennerr
2023-02-21 12:37:20 +02:00
committed by GitHub
parent f913536d88
commit c6647b4706
8 changed files with 68 additions and 19 deletions

View File

@@ -76,7 +76,7 @@ class Test_awslambda_function_no_secrets_in_code:
assert result[0].status == "FAIL"
assert (
result[0].status_extended
== f"Potential secret found in Lambda function {function_name} code"
== f"Potential secret found in Lambda function {function_name} code -> lambda_function.py: Secret Keyword on line 3"
)
def test_function_code_without_secrets(self):

View File

@@ -102,7 +102,7 @@ class Test_awslambda_function_no_secrets_in_variables:
assert result[0].status == "FAIL"
assert (
result[0].status_extended
== f"Potential secret found in Lambda function {function_name} variables"
== f"Potential secret found in Lambda function {function_name} variables -> Secret Keyword in variable db_password"
)
def test_function_no_secrets_in_variables(self):