How do I get Pulumi to not create the EKS VPC CNI ...
# kubernetes
e
How do I get Pulumi to not create the EKS VPC CNI plugin with the
@pulumi/eks
package?
f
set
use_default_vpc_cni
to false
Copy code
# Create an EKS cluster without default VPC CNI
my_cluster = Cluster("my-cluster",
                        use_default_vpc_cni=False,
                        )
e
Already have that set.