Skip to main content
Nordlys logo, a drawing of two gray mountains with green northern lights in the background TIL

Back to all TILs

Configure an S3 bucket for public Internet consumption

Published on by Brie Carranza · 1 min read

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