This message was deleted.
# aws
s
This message was deleted.
l
I can't find "Computed attribute cannot be set" in any code... I've looking in pulumi, pulumi-aws, pulumi-terraform-bridge...
g
what version of pulumi/pulumi and cli are you on?
l
I had just upgraded the CLI to 2.13.0. Looks like pulumi/pulumi is 2.12.1.
Yep, lock file says 2.12.1.
g
if you downgrade the cli to 2.12.1, do you still get this?
l
I'll check asap.. in a meeting right now.
Checked. Still happens in 2.12.1.
Trying destroy/re-up.
Worked fine there.. and now the computed field isn't changing, so no more error message...
g
😕
w
i got same error pay-dev-eks-cluster (awseksCluster) error: awseks/clusterCluster resource ‘eks-cluster’ has a problem: Computed attribute cannot be set pulumi v2.14.0
Copy code
eks.NewCluster(ctx, "eks-cluster", &eks.ClusterArgs{
   RoleArn: pulumi.StringInput(eksRole.Arn),
   VpcConfig: &eks.ClusterVpcConfigArgs{
      PublicAccessCidrs: pulumi.StringArray{pulumi.String("0.0.0.0/0")},
      SecurityGroupIds:  pulumi.StringArray{groupIds},
      SubnetIds:         subnetIds,
      VpcId:             vpc.ID(),
   },
before i add
VpcId
not show
Computed attribute cannot be set
with me.