5.7 Ensure you are using an IAM policy to manage access to buckets in Lightsail (Manual)
Description
The following policy grants a user access to manage a specific bucket in the Amazon Lightsail object storage service.
Rationale
This policy grants access to buckets through the Lightsail console, the AWS Command Line Interface (AWS CLI), AWS API, and AWS SDKs.
Impact
Users who don't have this policy will experience errors when viewing the Objects tab of the bucket management page in the Lightsail console.
Audit Procedure
Using AWS Console
- Login to AWS Console using https://console.aws.amazon.com
- Click
All services, clickIAMunder Security, Identity, & Compliance. - Click
Policies - Click in the
Filter policies by property or policy name and press enter - Type
Lightsailand press enter - Click on the policy that contains lightsail in the name
- Make sure the
Permissionstab is selected. - Confirm the policy looks like this
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "LightsailAccess",
"Effect": "Allow",
"Action": "lightsail:*",
"Resource": "*"
},
{
"Sid": "S3BucketAccess",
"Effect": "Allow",
"Action": "s3:*",
"Resource": ["arn:aws:s3:::<BucketName>/*", "arn:aws:s3:::<BucketName>"]
}
]
}
- If this policy is in place move to the next step. If it is not in any of the policies listed for
lightsailrefer to the remediation below. - Click on the
Policy usagetab - Confirm that the correct Group and/or User is listed under Permissions. If there is no one listed here refer to the remediation below.
Using AWS CLI
N/A - This is managed through the AWS Console IAM Policies.
Expected Result
An IAM policy should exist that grants Lightsail and S3 bucket access, and it should be attached to the appropriate users or groups.
Remediation
Using AWS Console
- Login to AWS Console using https://console.aws.amazon.com
- Click
All services, clickIAMunder Security, Identity, & Compliance. - Click
Policies - Click
Create policy - Click on the
JSONtab - Copy and paste the policy below into the JSON editor replacing the text in there and filling in the Lightsail bucket names. **You can find the Lightsail bucket name in the Lightsail console, Storage, Under buckets.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "LightsailAccess",
"Effect": "Allow",
"Action": "lightsail:*",
"Resource": "*"
},
{
"Sid": "S3BucketAccess",
"Effect": "Allow",
"Action": "s3:*",
"Resource": ["arn:aws:s3:::<BucketName>/*", "arn:aws:s3:::<BucketName>"]
}
]
}
- Click
Next tags - Add tags based on your companies outlined Tagging policy that should be in place based on the AWS Foundations Benchmark.
- Click
Next review - Click in
Name*and give it a name that contains "Lightsail" - Review the summary.
- Click
Create policy - Click in the
Filter policies by property or policy name and press enter - Type
Lightsailand press enter - Click on the Policy name that you just created.
- Click on the
Policy usagetab - Click
Attach - Add in the Users or Group that should have this permission.
- Click
Attach policy
Using AWS CLI
N/A - This is managed through the AWS Console IAM Policies.
Default Value
No IAM policy for Lightsail bucket access exists by default. Access must be explicitly configured.
References
CIS Controls
| Controls Version | Control | IG 1 | IG 2 | IG 3 |
|---|---|---|---|---|
| v8 | 3.3 Configure Data Access Control Lists - Configure data access control lists based on a user's need to know. Apply data access control lists, also known as access permissions, to local and remote file systems, databases, and applications. | x | x | x |
| v7 | 14.6 Protect Information through Access Control Lists - Protect all information stored on systems with file system, network share, claims, application, or database specific access control lists. These controls will enforce the principle that only authorized individuals should have access to the information based on their need to access the information as a part of their responsibilities. | x | x | x |
Profile
Level 1 | Manual