Skip to content

Commit

Permalink
resctl-bench: docs: add policy snippet for ssm:GetParameter
Browse files Browse the repository at this point in the history
Signed-off-by: Ricardo Cañuelo <[email protected]>
  • Loading branch information
Ricardo Cañuelo committed Oct 29, 2024
1 parent 5c116dc commit 2ade67a
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 2ade67a

Please sign in to comment.