This message was deleted.
# general
s
This message was deleted.
b
Copy code
eks_cluster = aws.eks.Cluster(
    'training-eks-cluster',
    name = 'training-eks-cluster',
    role_arn = eks_role.arn,
    vpc_config = aws.eks.ClusterVpcConfigArgs(
      vpc_id= training_vpc.id,
      subnet_ids= [private1.id, private2.id]
    ),
    version = '1.18',
    tags = {
        'rs:project': 'training',
        'rs:owner': '<mailto:sol-eng@rstudio.com|sol-eng@rstudio.com>'
    }
)
p
I have seen this before.. My issue had something to do with vpcid I think.
Try commenting out fields and see what works. That was how I resolved.
b
@billions-yak-67755 can you open an issue in the EKS github repo for this as well?
b
Good to know, thanks!! I have tried hardcoding the VPC id, subnet ids, role_arn, etc. to no avail 😞 I have gone all the way down to nothing, adding only required parameters (hardcoded) to no avail either. And yes - I will definitely go open an issue!
b
yes that's the one
✅ 1
b