and in an aws eks cluster creation like : ```eks_c...
# kubernetes
p
and in an aws eks cluster creation like :
Copy code
eks_cluster = aws.eks.Cluster("my-eks-cluster", opts=eks_opts, **eks_cluster_config)
how would i achieve a cluster called “my-eks-cluster” rather than “my-eks-cluster-3ef8ab7” ?
b
Hey Brett. John answered this below, but we have an FAQ on this as well: https://www.pulumi.com/docs/troubleshooting/faq/#why-do-resource-names-have-random-hex-character-suffixes
p
i solved like :-
Copy code
# create cluster resource
    eks_cluster_config['name'] = "itplat-eks-cluster"
    eks_cluster = aws.eks.Cluster("itplat-eks-cluster", opts=provider_opts, **eks_cluster_config)