mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
26 lines
583 B
JSON
26 lines
583 B
JSON
{
|
|
"Version": "2012-10-17",
|
|
"Statement": [
|
|
{
|
|
"Sid": "AllowAccessToTheBucket",
|
|
"Effect": "Allow",
|
|
"Action": [
|
|
"s3:ListBucket"
|
|
],
|
|
"Resource": [
|
|
"arn:aws:s3:::backups-bucket"
|
|
]
|
|
},
|
|
{
|
|
"Sid": "AllowOperationsInTheDesignatedFolder",
|
|
"Effect": "Allow",
|
|
"Action": [
|
|
"s3:*"
|
|
],
|
|
"Resource": [
|
|
"arn:aws:s3:::backups-bucket/prometheus/*"
|
|
]
|
|
}
|
|
]
|
|
}
|