Web 2 Blog Site

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
creation and permissions Correct Bucket Policy 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! screenshot of the error recieved when missing the '/*'

Upload objects as desired object upload

Using the GUI is pretty straightforward, just click the big orange buttons...