Skip to content
This repository has been archived by the owner on Sep 7, 2020. It is now read-only.

Latest commit

 

History

History
17 lines (14 loc) · 455 Bytes

README.md

File metadata and controls

17 lines (14 loc) · 455 Bytes

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