Hey Everyone, I’m wondering if anyone has successf...
# aws
k
Hey Everyone, I’m wondering if anyone has successfully created an EKS nodegroup attached to a cluster using the EKS Go module? I’m getting the following somewhat obscure error message:
Copy code
error: an unhandled error occurred: program exited with non-zero exit code: 1

    error: program failed: marshaling properties: awaiting input property cluster: cannot marshal an input of type pulumi.StringOutput with element type string as a value of type pulumi.StringOutput
    exit status 1
Code Snippet:
Copy code
_, err = eks.NewManagedNodeGroup(ctx, "managed", &eks.ManagedNodeGroupArgs{
      Cluster: cluster.Core,
      NodeGroupName: pulumi.String("managed-test"),
    })
I get the same error on both the
NewManagedNodeGroup
and
NewNodeGroup
resources. And if i remove the nodegroup resource the rest of the stack works fine
I do have an issue open with more details https://github.com/pulumi/pulumi-eks/issues/566
b
thanks for the issue, we'll take a look
k
Any update?