Cloud Infrastructure
An overview of cloud infrastructure with S3 storage
Amelia Gianoli 2026-2-25
Cloud Infrastructure
Amazon Linux
uname -a shows name, OS version and other info
uses yum instead of dnf or apt
S3 Storage
Workflow:
create bucket
set permissions- Json file
Example:
{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Principal": "*", "Action": [ "s3:GetObject" ], "Resource": "arn:aws:s3:::YOUR_BUCKET_NAME/*" } ] }
When updating "your bucket name" DO NOT FORGET the /* at the end; it will throw an error!

Upload objects as desired

Using the GUI is pretty straightforward, just click the big orange buttons...
Web 2 Blog Site