Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AWS: Where do I see a list of origin access identities?

When I created a CloudFront distribution, an origin access identity was created, so that CloudFront can use it to access the S3 bucket. But where do I see it? I went through IAM links and I can't find a list of such access identities.

like image 957
Silly Dude Avatar asked Dec 02 '22 11:12

Silly Dude


1 Answers

An Origin Access Identity is not an IAM user or role. It's possible to view Origin Access Identities in the following ways:

  1. Web console: Click on Origin Access Identity on the panel located on the left of your Cloudfront dashboard

enter image description here

  1. CLI tool: Run the following command

    aws cloudfront list-cloud-front-origin-access-identities --output json

like image 184
ktrace Avatar answered Dec 06 '22 06:12

ktrace