Skip to content

Commit

Permalink
Merge pull request #324 from r-c-n/rcn-20241029-lambda-docs
Browse files Browse the repository at this point in the history
resctl-bench: docs: add polocy snippet for ssm:GetParameter
  • Loading branch information
htejun authored Oct 29, 2024
2 parents 5c116dc + 2ade67a commit 862e873
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions resctl-bench/doc/lambda.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,22 @@ We use github app `iocost-issue-creater` to file a github issue, thus it's crede
}
```

Now we need to grant permissions to the role for accessing these
parameters:

```
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "ssm:GetParameter",
"Resource": "*"
}
]
}
```

AWS lambda flow
===============
1. User generates the benchmark result on their device.
Expand Down

0 comments on commit 862e873

Please sign in to comment.