mcp-server-semgrep
Version:
MCP Server for Semgrep Integration - static code analysis with AI
38 lines (37 loc) • 885 B
JSON
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
// ruleid: wildcard-assume-role
"Principal": {
"AWS": "*"
},
"Action": "sts:AssumeRole"
},
{
"Effect": "Deny",
// ok: wildcard-assume-role
"Principal": {
"AWS": "*"
},
"Action": "sts:AssumeRole"
},
{
"Effect": "Allow",
// ok: wildcard-assume-role
"Principal": {
"AWS": "*"
},
"Action": "s3:PutObject"
},
{
"Effect": "Allow",
// ok: wildcard-assume-role
"Principal": {
"AWS": "arn:aws:iam::1234567890:root"
},
"Action": "sts:AssumeRole"
}
]
}