More Info:
Ensure ECS container insights are enabledRisk Level
LowAddress
Reliability, SecurityCompliance Standards
- APRA CPS 234 (Australia)
- BSI C5 (Germany)
- Brazil LGPD
- CCPA / CPRA (California)
- CIS Critical Security Controls v8
- CMMC 2.0
- CSA Cloud Controls Matrix v4
- DPDPA
- Digital Operational Resilience Act (EU)
- Essential 8
- GDPR
- HIPAA
- ISO 27001
- ISO/IEC 27017
- ISO/IEC 27018
- ISO/IEC 27701
- KSA PDPL
- MAS Technology Risk Management (Singapore)
- MITRE ATT&CK (Cloud)
- NIS2 Directive
- NIST SP 800-171
- NYDFS 23 NYCRR 500
- SWIFT Customer Security Controls Framework
- Sarbanes-Oxley IT General Controls
- UK NCSC Cyber Assessment Framework
Triage and Remediation
- Remediation
Remediation
Using Console
Using Console
To remediate the misconfiguration of ECS Container Insights not being enabled for AWS EKS using the AWS console, follow these steps:
- Sign in to the AWS Management Console: Go to https://aws.amazon.com/ and sign in to your AWS account.
- Navigate to Amazon EKS Console: Go to the Amazon EKS console by searching for “EKS” in the AWS Management Console search bar and selecting Amazon EKS.
- Select your EKS Cluster: From the list of EKS clusters, select the cluster for which you want to enable ECS Container Insights.
- Click on Add-ons: In the cluster details page, click on the “Add-ons” tab.
- Enable Container Insights: Under the “Add-ons” tab, you will see a list of available add-ons. Look for “Container Insights” and click on the “Enable” button next to it.
- Configure Container Insights: Follow the on-screen instructions to configure ECS Container Insights for your EKS cluster. You may need to specify the log group and other configurations as required.
- Verify Configuration: Once the configuration is complete, verify that ECS Container Insights is enabled for your EKS cluster by checking the status in the console.
Using CLI
Using CLI
To enable ECS Container Insights for AWS EKS clusters using AWS CLI, follow these steps:Replace Make sure that the output shows Container Insights enabled for the cluster.
- Install and configure AWS CLI: Make sure you have AWS CLI installed and configured with appropriate credentials that have permissions to modify EKS clusters.
- Enable Container Insights: Run the following AWS CLI command to enable Container Insights for your EKS cluster:
YOUR_CLUSTER_NAME with the name of your EKS cluster.- Verify Container Insights: To verify that Container Insights is enabled, you can run the following command:
- Monitor Container Insights: Once Container Insights is enabled, you can monitor your EKS cluster using Amazon CloudWatch Container Insights.
Using Python
Using Python
To remediate the misconfiguration of ECS Container Insights not being enabled for AWS Kubernetes using Python, follow these steps:
-
Install the AWS SDK for Python (Boto3) if you haven’t already. You can install it using pip:
- Create a Python script with the following code to enable ECS Container Insights for your AWS EKS cluster:
-
Replace
'your_cluster_name'in the script with the name of your AWS EKS cluster. -
Run the Python script using the command:
- The script will enable ECS Container Insights for your AWS EKS cluster, and you should see the message “ECS Container Insights enabled for cluster: your_cluster_name” upon successful completion.
Using Terraform
Using Terraform
THIS_CLUSTERwith your ECS cluster resource name.REPLACE_WITH_CLUSTER_NAMEwith the actual ECS cluster name (must match the existing cluster if importing).
terraform plan should show:- a single
~ update in-placeforaws_ecs_cluster.THIS_CLUSTERwithsetting.name = "containerInsights"changingvaluefrom"disabled"(or null) to"enabled".

