Gathering detailed insights and metrics for @pulumi/awsx
Gathering detailed insights and metrics for @pulumi/awsx
Gathering detailed insights and metrics for @pulumi/awsx
Gathering detailed insights and metrics for @pulumi/awsx
AWS infrastructure best practices in component form!
npm install @pulumi/awsx
Typescript
Module System
Node Version
NPM Version
TypeScript (88.39%)
Go (8.66%)
Shell (1.34%)
Makefile (1.25%)
JavaScript (0.32%)
Dockerfile (0.03%)
HTML (0.01%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
Apache-2.0 License
235 Stars
859 Commits
108 Forks
28 Watchers
117 Branches
142 Contributors
Updated on Jul 07, 2025
Latest Version
2.22.0
Package Id
@pulumi/awsx@2.22.0
Unpacked Size
1.55 MB
Size
287.11 kB
File Count
360
NPM Version
10.8.2
Node Version
20.19.2
Published on
Jun 25, 2025
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
Pulumi's framework for Amazon Web Services (AWS) infrastructure.
To use this package, install the Pulumi CLI. For a streamlined Pulumi walkthrough, including language runtime installation and AWS configuration, see the Crosswalk for AWS documentation.
The AWS Infrastructure package is intended to provide component wrappers around many core AWS 'raw' resources to make them easier and more convenient to use. In general, the @pulumi/awsx
package mirrors the module structure of @pulumi/aws
(i.e. @pulumi/awsx/ecs
or @pulumi/awsx/ec2
). These components are designed to take care of much of the redundancy and boilerplate necessary when using the raw AWS resources, while still striving to expose all underlying functionality if needed.
The AWS Infrastructure package undergoes constant improvements and additions. While we will strive to maintain backward compatibility here, we will occasionally make breaks here as appropriate if it helps improve the overall quality of this package.
The AWS Infrastructure package exposes many high level abstractions. Including:
ec2
. A module that makes it easier to work with your AWS network, subnets, and security groups. By default, the resources in the package follow the AWS Best Practices, but can be configured as desired in whatever ways you want. Most commonly, this package is used to acquire the default Vpc for a region (using awsx.ec2.DefaultNetwork
). However, it can also be used to easily create or augment an existing Vpc.
ecs
. A module that makes it easy to create and configure clusters, tasks and services for running containers. Convenience resources are created to make the common tasks of creating EC2 or Fargate services and tasks much simpler.
lb
. A module for simply setting up Elastic Load Balancing. This module provides convenient ways to set up either Network
or Application
load balancers, along with the appropriate ELB Target Groups and Listeners in order to have a high availability, automatically-scaled service. These ELB components also work well with the other awsx components. For example, an lb.defaultTarget
can be passed in directly as the portMapping
target of an ecs.FargateService
.
This package is available in many languages in the standard packaging formats.
To use from JavaScript or TypeScript in Node.js, install using either npm
:
1npm install @pulumi/awsx
or yarn
:
1yarn add @pulumi/awsx
To use from Python, install using pip
:
1pip install pulumi-awsx
To use from Go, use go get
to grab the latest version of the library
1go get github.com/pulumi/pulumi-awsx/sdk
To use from .NET, install using dotnet add package
:
1dotnet add package Pulumi.Awsx
The configuration options available for this provider mirror those of the Pulumi AWS Classic Provider
Pulumi dependency resolution may result in awsx.*
resources using a different version of the AWS Classic Provider than
the rest of the program. The version used by default is fixed for each @pulumi/awsx
release and can be found in
package.json. When this becomes problematic,
for example a newer version of AWS Classic Provider is desired, it can be specified explicitly. For example, in Python:
1import pulumi 2import pulumi_aws as aws 3import pulumi_awsx as awsx 4 5awsp = aws.Provider("awsp", opts=pulumi.ResourceOptions(version="6.36.0")) 6lb = awsx.lb.ApplicationLoadBalancer("lb", opts=pulumi.ResourceOptions(providers={"aws": awsp}))
Before version 1, this package only supported components in TypeScript. All the existing components from the 0.x releases are now available in the classic
namespace. The classic
namespace will remain until the next major version release but will only receive updates for critical security fixes.
@pulumi/awsx
to @pulumi/awsx/classic
to maintain existing behaviour.Note: The new top-level components (outside the classic
namespace) may require additional code changes and resource re-creation.
Vpc.fromExistingIds()
as this was originally added because other components depended on the concrete VPC component class. The new components in v1 no longer have hard dependencies on other resources, so instead the subnets from the existing VPC can be passed into other components directly.No vulnerabilities found.
Reason
22 commit(s) and 6 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
no binaries found in the repo
Reason
security policy file detected
Details
Reason
project is fuzzed
Details
Reason
dependency not pinned by hash detected -- score normalized to 4
Details
Reason
Found 6/30 approved changesets -- score normalized to 2
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
Project has not signed or included provenance with any releases.
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
18 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More