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
Here are some suggestions to add to lambdas checks
Check if any environment variable key contains SECRET, KEY, TOKEN (case insensitive) to check if there is sensitive data.
Equivalent CLI : aws lambda list-functions | grep -i TOKEN
Check if the lambda is triggerable via an URL
Equivalient CLI : for f in $(aws lambda list-functions | jq -r '.Functions[].FunctionName'); do aws lambda get-function-url-config --function-name $f; done
The text was updated successfully, but these errors were encountered:
Hey !
Here are some suggestions to add to lambdas checks
Check if any environment variable key contains SECRET, KEY, TOKEN (case insensitive) to check if there is sensitive data.
Equivalent CLI :
aws lambda list-functions | grep -i TOKEN
Check if the lambda is triggerable via an URL
Equivalient CLI :
for f in $(aws lambda list-functions | jq -r '.Functions[].FunctionName'); do aws lambda get-function-url-config --function-name $f; done
The text was updated successfully, but these errors were encountered: