AWS S3 URL Signing
Set up AWS S3 with Lasso to enable automatic URL signing for secure and temporary access to your private content.
Step 1: Create an IAM Role
{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Principal": { "AWS": "arn:aws:iam::{AWS account ID Lasso}:root" }, "Action": "sts:AssumeRole", "Condition": { "StringEquals": { "sts:ExternalId": "{random string, min 20 characters. See Lasso UI to generate external ID.}" } } } ] }{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "s3:GetObject" ], "Resource": "arn:aws:s3:::{your-image-bucket}/*" } ] }
Step 2: Add Signing Information in Lasso
Step 3: Automatic Signing for AWS S3 Content
Last updated