I’ve been using AWSx and deploying a Fargate servi...
# general
e
I’ve been using AWSx and deploying a Fargate service. As part of the TaskContainerDefinition you can set a value
name
that is supposed to be the name in the ECS task. Despite trying to set it, it’s always resulting in a
container
value for the name. Example
Copy code
{container: {family: "myfamily", image: "imageURL", name: "jowanzascontainer"}}
b
Change to
containers
Copy code
{
  containers: {
    jowanzascontainer: { family: "myfamily", image: "imageURL" },
  },
}
e
Ahhh I see
Thanks @elegant-kitchen-28076
c
(This is a known bug — for reference / to vote or track: https://github.com/pulumi/pulumi-awsx/issues/882)
e
Thanks @calm-cat-43230 I should have checked github first
c
No problem! I ran into it a few months back. 🙂 Always fine to ask in the community, too! (Sometimes figuring out the right way to ask can be a stumbling block for google/github.)