5.8 Ensure Lightsail instances are attached to the buckets (Manual)
Description
Attaching an Amazon Lightsail instance to a Lightsail storage bucket gives it full programmatic access to the bucket and its objects.
Rationale
When you attach instances to buckets, you don't have to manage credentials like access keys. Resource access is ideal if you're configuring software or a plugin on your instance to upload files directly to your bucket. For example, if you want to configure a WordPress instance to store media files on a bucket configuration with bucket storage resource access allows for that securely.
Impact
You can attach instances that are in a running state only. Additionally, the instances have to be in the same AWS Region as the bucket or the buckets have to be in the same region as the instances.
Audit Procedure
Using AWS Console
- Login to AWS Console using https://console.aws.amazon.com
- Click
All services, clickLightsailunder Compute. - This will open up the Lightsail console.
- Select
Storage. - All Lightsail buckets are listed here.
- Click on a bucket name
- Click
Permissions. - Scroll down to
Resource accessand confirm that your instance is attached. - If the instance using this Storage bucket is not attached refer to the remediation below.
Using AWS CLI
- Run
aws lightsail get-buckets
aws lightsail get-buckets
This command will provide a list of Buckets tied to Lightsail.
- If there are no buckets listed then refer to the remediation below.
Expected Result
Lightsail instances that need bucket access should be attached to their respective storage buckets via resource access, eliminating the need for access key management.
Remediation
Using AWS Console
- Login to AWS Console using https://console.aws.amazon.com
- Click
All services, clickLightsailunder Compute. - This will open up the Lightsail console.
- Confirm that the
instanceyou want to connect to the Storage bucket is in arunningstate - If it is move on to Step 6. If it is not click on the instance name, then click on
Start. Wait for the status to readRunning - Select
Storage. - All Lightsail buckets are listed here.
- Click on the bucket you want to associate with the instances.
- Click
Permissions. - Scroll down to
Resource access. - Click on
Attach instance - Click on
Choose an instance - Select the instance
- Click Attach
- Repeat this for any other instances and buckets that need to be attached.
Using AWS CLI
- Run
aws lightsail create-bucket
aws lightsail create-bucket --bucket-name test-cli-bucket2 --bundle-id small_1_0
This command will create a bucket. If you want to review the bundle size ids run this command.
aws lightsail get-bucket-bundles
Example output:
"bundles": [
{
"bundleId": "small_1_0",
"name": "Object Storage 5GB",
"price": 1.0,
"storagePerMonthInGb": 5,
"transferPerMonthInGb": 25,
"isActive": true
},
{
"bundleId": "medium_1_0",
"name": "Object Storage 100GB",
"price": 3.0,
"storagePerMonthInGb": 100,
"transferPerMonthInGb": 250,
"isActive": true
},
{
"bundleId": "large_1_0",
"name": "Object Storage 250GB",
"price": 5.0,
"storagePerMonthInGb": 250,
"transferPerMonthInGb": 500,
"isActive": true
}
]
Change the "bundleId" to the size of storage you need. Repeat and create all the S3 buckets that you need for Lightsail.
Default Value
Lightsail instances are not attached to buckets by default. Bucket attachment must be configured manually.
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 |
| v8 | 3.11 Encrypt Sensitive Data at Rest - Encrypt sensitive data at rest on servers, applications, and databases containing sensitive data. Storage-layer encryption, also known as server-side encryption, meets the minimum requirement of this Safeguard. Additional encryption methods may include application-layer encryption, also known as client-side encryption, where access to the data storage device(s) does not permit access to the plain-text data. | x | x | |
| v7 | 1.7 Deploy Port Level Access Control - Utilize port level access control, following 802.1x standards, to control which devices can authenticate to the network. The authentication system shall be tied into the hardware asset inventory data to ensure only authorized devices can connect to the network. | x | x | |
| v7 | 4.3 Ensure the Use of Dedicated Administrative Accounts - Ensure that all users with administrative account access use a dedicated or secondary account for elevated activities. This account should only be used for administrative activities and not internet browsing, email, or similar activities. | x | x | x |
Profile
Level 1 | Manual