MultiCloud Classroom notes 03/Sep/2025

AWS S3 contd

  • AWS S3 recommends not to use ACL’s
  • I want to give an access of an object temporarily to someone we can use presigned urls for temporary access
  • I want to give access to public: use policy generator for creating public access to your bucket. (Watch classroom video)
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "Statement1",
      "Effect": "Allow",
      "Principal": "*",
      "Action": "s3:*",
      "Resource": "arn:aws:s3:::lts3-confidential/*"
    }
  ]
}
  • I want to give permission to a specific user (aws) to do anything in my bucket
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "Statement1",
      "Effect": "Allow",
      "Principal": {
        "AWS": "arn:aws:iam::381491878286:user/cloudengineer"
      },
      "Action": "s3:*",
      "Resource": "arn:aws:s3:::lts3-confidential/Images/*"
    }
  ]
}

CDN (Content Delivery Network)

  • Concept
    Preview
  • AWS has edge locations around the world in addition to regions Refer Here
  • AWS offers CDN as a service using AWS Cloudfront
  • Create an s3 bucket make it host a static website and this s3 as source in cloudfront

Published
Categorized as Uncategorized Tagged

By continuous learner

devops & cloud enthusiastic learner

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Please turn AdBlock off
Social Media Icons Powered by Acurax Web Design Company

Discover more from Direct DevOps from Quality Thought

Subscribe now to keep reading and get access to the full archive.

Continue reading

Visit Us On FacebookVisit Us On LinkedinVisit Us On Youtube