Skip to content

Commit

Permalink
fix: fix iam permissions to retrieve logs from aws s3 (argoproj#9798)
Browse files Browse the repository at this point in the history
  • Loading branch information
agido-heppe committed Oct 12, 2022
1 parent aa59b43 commit d4817ef
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions docs/configure-artifact-repository.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,16 @@ $ cat > policy.json <<EOF
"Action":[
"s3:PutObject",
"s3:GetObject",
"s3:ListBucket"
],
"Resource":"arn:aws:s3:::$mybucket/*"
}
},
{
"Effect":"Allow",
"Action":[
"s3:ListBucket"
],
"Resource":"arn:aws:s3:::$mybucket"
},
]
}
EOF
Expand Down

0 comments on commit d4817ef

Please sign in to comment.