We are using the beta of `awsx` to deploy fargate ...
# general
a
We are using the beta of
awsx
to deploy fargate services. We have > 100 of these services all coming from the same image, only differing in their runtime arguments. We create images and push them to ECR using
awsx.ecr.Image
. We would rather not redeploy these images to Fargate if the images don't change between runs. The
sha256
Id on the docker image is an easy way to verify this. I imagine that our
Image
resource gets a new name each time pulumi is run, which could result in Fargate redeploying every time, even when it doesn't need to. Does anybody have experience dealing with this?
b
unfortunately this seems to be https://github.com/pulumi/pulumi-docker/issues/132 We are actively working on solutions for this, but there isn’t a workaround right now
1