https://pulumi.com logo
Title
b

better-queen-89787

03/09/2022, 3:42 PM
Hi Folks, not sure if this is the right channel to ask but I'm trying to use Pulumi on AWS to create Fargate container and came across the problem when deploying multiple times from GH action. I'm getting:
TargetGroupAssociationLimit: The following target groups cannot be associated with more than one load balancer
when running
const listener = new awsx.lb.NetworkLoadBalancer(nameFor("lb"))
        .createTargetGroup(nameFor("group"), { port: 80, protocol: "TCP" })
        .createListener(nameFor("listener"), { port: 443, protocol: "TLS", certificateArn: certificate.arn})
It work locally when ran pulumi up but not via GH action with same command. GH Action version: 3.15.0 Pulumi version on GH action: v3.25.1 Local Pulumi version: v3.25.1