TIL Configure an S3 bucket for public Internet consumption

This setting permissions for website access doc is the best.

When configuring the s3 client on macOS, I found this useful for getting the credentials from new_user_credentials.csv:

The CSV has these headers:

User name,Password,Access key ID,Secret access key,Console login link

That means we can do this:

Get the Access key ID

cat ~/Downloads/new_user_credentials.csv | grep action | cut -d"," -f3 | pbcopy

Get the secret access key

cat ~/Downloads/new_user_credentials.csv | grep action | cut -d"," -f4 | pbcopy

ℹ️ About this TIL snippet: Created 2022-12-04T22:22:17-05:00 · View the source