clean-salesclerk-32849
09/12/2022, 7:55 PMexport const fargate = new awsx.ecs.FargateService(NAME, {
cluster,
taskDefinitionArgs: {
containers: {
mbankrlproxy: {
image: image,
memory: 512,
portMappings: [{ containerPort: 80, hostPort: 80 }],
environment: ENVIRONMENT,
},
},
},
desiredCount: 1,
});
either to get the randomly generated IP, or better yet to use a reserved IP. I've been looking in the docs but can't find it ...stocky-restaurant-98004
09/12/2022, 10:36 PMclean-salesclerk-32849
09/13/2022, 1:35 PM