Skip to content

Instantly share code, notes, and snippets.

@Ajitpatil92002
Created February 21, 2025 12:00
Show Gist options
  • Save Ajitpatil92002/856837dc321a92a8968fc41aa2bfb4b1 to your computer and use it in GitHub Desktop.
Save Ajitpatil92002/856837dc321a92a8968fc41aa2bfb4b1 to your computer and use it in GitHub Desktop.
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