0.1.0-alpha.3 • Published 5 years ago

@pgarbe/fargate v0.1.0-alpha.3

Weekly downloads
1
License
Apache-2.0
Repository
github
Last release
5 years ago

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
});