
Security News
Feross on the 10 Minutes or Less Podcast: Nobody Reads the Code
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.
@stackattack/aws
Advanced tools
Production-ready AWS infrastructure components for Pulumi, written in Typescript. Deploy complex applications with minimal code using secure, opinionated defaults.
Get Started | Components | Examples
StackAttack eliminates infrastructure boilerplate by providing battle-tested AWS components with good defaults built on Pulumi. Instead of writing hundreds of lines of infrastructure code, deploy production-ready applications with a fraction of the effort it takes to wire it all up yourself. The following config deploys service to ECS with a database in ~30 lines:
import * as saws from "@stackattack/aws";
const ctx = saws.context();
const domain = "api.mydomain.com";
const vpc = saws.vpc(ctx);
const db = saws.database(ctx, { network: vpc.network("private") });
const certificate = saws.certificate(ctx, { domain });
const loadBalancer = saws.loadBalancer(ctx, {
network: vpc.network("public"),
cerificate
});
const cluster = saws.cluster(ctx, { network: vpc.network("private") });
const app = saws.service(ctx, {
cluster,
domain,
image: "my-app:latest",
loadBalancer,
port: 3000,
env: { DATABASE_URL: db.url }
});
export const appUrl = app.url;
Please open an issue if you have any trouble using stackattack or want to request additional components.
FAQs
High-level, production-ready AWS components for Pulumi
The npm package @stackattack/aws receives a total of 4 weekly downloads. As such, @stackattack/aws popularity was classified as not popular.
We found that @stackattack/aws demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.

Research
/Security News
Campaign of 108 extensions harvests identities, steals sessions, and adds backdoors to browsers, all tied to the same C2 infrastructure.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.