@pgarbe/fargate
TypeScript icon, indicating that this package has built-in type declarations

0.1.0-alpha.3 • Public • Published

Fargate Cluster

This package contains constructs for working with AWS Fargate. The simplest example of using this library looks like this:

// Create a Fargate cluster with an ALB
const cluster = new fargate.FargateCluster(this, 'MyCluster', {
  vpc,
});

// Fargate service which uses ALB from FargateCluster
const service = new fargate.FargateService(this, 'MyService', {
  cluster: cluster,
  scaling: xy,
  pathPattern or hostPattern
});

Readme

Keywords

none

Package Sidebar

Install

npm i @pgarbe/fargate

Weekly Downloads

4

Version

0.1.0-alpha.3

License

Apache-2.0

Unpacked Size

3.79 MB

Total Files

12

Last publish

Collaborators

  • pgarbe