busy-air-16359
05/17/2019, 12:33 PMaws.eks.Cluster
which lets me configure endpointPrivateAccess
and endpointPublicAccess
but it seems to be a low level API and I’m not finding anyone using itrapid-eye-32575
05/17/2019, 1:45 PMnew eks.Cluster(...)
, endpointPublicAccess
is per default true
. Therefore you can access the k8s API server from anywehre (See https://www.terraform.io/docs/providers/aws/r/eks_cluster.html#vpc_config)const cluster = new eks.Cluster(...);
cluster.eksCluster.endpointPrivateAccess = true;
cluster.eksCluster.endpointPublicAccess = false;
white-balloon-205
pulumi-eks
package yet. See https://github.com/pulumi/pulumi-eks/issues/86 (and give it a thumbs up!). PRs also welcome (this one should be very simple).busy-air-16359
05/19/2019, 5:55 PM