breezy-agency-15661
02/18/2020, 9:57 PM//const lb = new awsx.lb.NetworkListener("nginx", { port: 80 });
const service = new awsx.ecs.FargateService("nginx", {
// cluster,
taskDefinitionArgs: {
containers: {
nginx: {
image: image,
memory: 512,
portMappings: [ ?? ],
},
},
},
desiredCount: 1,
});
white-balloon-205
02/18/2020, 10:52 PM