Hello, I am using pulumi yaml, and facing the foll...
# general
c
Hello, I am using pulumi yaml, and facing the following issue: whenever I use List<Property Map> getting error. For example If I use configuration provided in documentation for AWS ALB Listener https://www.pulumi.com/registry/packages/aws/api-docs/alb/listener/#listenerdefaultactionforwardtargetgroup I am getting the following error: Cannot assign '{}' to 'awsalb/ListenerDefaultActionListenerDefaultAction': type: Missing required property 'type'
Copy code
resources:
  frontEndLoadBalancer:
    type: aws:lb:LoadBalancer
  frontEndTargetGroup:
    type: aws:lb:TargetGroup
  pool:
    type: aws:cognito:UserPool
  client:
    type: aws:cognito:UserPoolClient
  domain:
    type: aws:cognito:UserPoolDomain
  frontEndListener:
    type: aws:lb:Listener
    properties:
      loadBalancerArn: ${frontEndLoadBalancer.arn}
      port: '80'
      protocol: HTTP
      defaultActions:
        - type: authenticate-cognito
          authenticateCognito:
            userPoolArn: ${pool.arn}
            userPoolClientId: ${client.id}
            userPoolDomain: ${domain.domain}
        - type: forward
          targetGroupArn: ${frontEndTargetGroup.arn}