
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
Library for querying the state of an AWS::ECS::Cluster
var ecs = require('ecs-info');
ecs.Cluster.describe('my-cluster', 'us-east-1')
.then(clusterData => { ... });
The object that comes back has circular references that you can use to trace the relationships between EC2 instances, ECS services, and ECS tasks that are part of the cluster. Basically:
Cluster {
tasks: [ ...Task {} ],
instances: [ ...Instance {} ],
services: [ ...Service {} ]
}
A Cluster is the response from an ecs.describeClusters request with additional properties:
A Task is the response from an ecs.describeTasks request with additional properties:
A Service is the response from an ecs.describeServices request with additional properties:
An Instance is the response from an ecs.describeContainerInstances request with additional properties:
Futhermore, each of these classes have a set of prototype methods that they implement. These can be useful for formatting or resolving specific information about a cluster, task, service, or instance.
Return an array of IAM policy statements providing permission to run the API requests involved in this library:
ecs.iamPermissions('my-cluster-name');
FAQs
Library for querying the state of an AWS::ECS::Cluster
We found that ecs-info demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 11 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.