Created
February 21, 2025 12:00
-
-
Save Ajitpatil92002/856837dc321a92a8968fc41aa2bfb4b1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. create s3 bucket | |
2. edit permission : according to ur bucketname | |
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Sid": "PublicReadGetObject", | |
"Effect": "Allow", | |
"Principal": "*", | |
"Action": "s3:GetObject", | |
"Resource": "arn:aws:s3:::project-name-prod/*" | |
} | |
] | |
} | |
3. create IAM | |
- add name | |
- create group with full access | |
- dont forget to select the group | |
- create accesskey |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment