Skip to content

Instantly share code, notes, and snippets.

@niski84
Created December 8, 2022 20:49
Show Gist options
  • Save niski84/10554e25f0741338f34954e059eb6023 to your computer and use it in GitHub Desktop.
Save niski84/10554e25f0741338f34954e059eb6023 to your computer and use it in GitHub Desktop.
AllowReadOnlyAccess
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowReadOnlyAccessToElasticBeanstalk",
"Effect": "Allow",
"Action": [
"elasticbeanstalk:Describe*",
"elasticbeanstalk:List*"
],
"Resource": "*"
},
{
"Sid": "AllowReadOnlyAccessToS3",
"Effect": "Allow",
"Action": [
"s3:Get*",
"s3:List*"
],
"Resource": "*"
},
{
"Sid": "AllowReadOnlyAccessToRDS",
"Effect": "Allow",
"Action": [
"rds:Describe*",
"rds:List*"
],
"Resource": "*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment