This message was deleted.
# aws
s
This message was deleted.
l
Is it the same issue? Same error, different issue, maybe? The issue you linked says it was resolved in TF AWS provider 2.43.0. The current version of the Pulumi provider is built from version 3.33.0 of the TF AWS provider...
q
You might be right
Though it should be supported
l
2.43.0 of the provider was adopted in release 1.17.0 of the Pulumi provider. So long as you're using something newer, you should be ok...
What version of the aws provider are you using? Could it be very old?
Do you have two condition blocks? That seems to be the requirement.
q
Shouldn't be. I recently updated
l
Can you share the relevant code?
q
Sure
Copy code
listener.addListenerRule(
      `listener-rule-${i}-${pulumi.getStack()}`,
      {
        conditions: [
          {
            hostHeader: {
              values: [appHost],
            },
            pathPattern: {
              values: [pathPattern],
            },
          },
        ],
        actions: [
          {
            type: 'forward',
            targetGroupArn: targetGroup.arn,
          },
        ],
      }
    );
You're probably right there. Two separate conditions
l
Yea, that's one condition.
q
My bad. Thank you 🙂
👍 1