Fortinet black logo

AWS Administration Guide

Setting up IAM roles

Copy Link
Copy Doc ID 94c869ba-eb59-11ed-8e6d-fa163e15d75b:226534
Download PDF

Setting up IAM roles

Identity & Access Management roles need S3 bucket read access. This example applies the existing AmazonS3ReadOnlyAccess policy to the role by adding the following code or selecting S3ReadOnlyAccess from the policy list in adding to the role:

{

"Version": "2012-10-17",

"Statement": [

{

"Effect": "Allow",

"Action": [

"s3:Get*",

"s3:List*"

],

"Resource": "*"

}

]

}

See IAM roles for Amazon EC2.

Setting up IAM roles

Identity & Access Management roles need S3 bucket read access. This example applies the existing AmazonS3ReadOnlyAccess policy to the role by adding the following code or selecting S3ReadOnlyAccess from the policy list in adding to the role:

{

"Version": "2012-10-17",

"Statement": [

{

"Effect": "Allow",

"Action": [

"s3:Get*",

"s3:List*"

],

"Resource": "*"

}

]

}

See IAM roles for Amazon EC2.