Add support in aws_eks_cluster
for the new Service IPv4 range feature of EKS clusters: https://aws.amazon.com/about-aws/whats-new/2020/10/amazon-eks-supports-configurable-kubernetes-service-ip-address-range/
resource "aws_eks_cluster" "cluster" {
name = var.cluster-name
serviceIpv4Cidr = "10.0.0.0/16" // something like this is what I would imagine
}
I'm not aware of any other open issues for this feature.
hi @jwenz723, thank you for creating this issue! To follow along the AWS API, just noting here that this new argument service_ipv4_cidr
should also appear w/in it's parent argument kubernetes_network_config
, with an updated potential config:
resource "aws_eks_cluster" "cluster" {
name = var.cluster-name
kubernetes_network_config {
service_ipv4_cidr = "10.0.0.0/16" // something like this is what I would imagine
}
Reference: https://docs.aws.amazon.com/eks/latest/APIReference/API_CreateCluster.html
@anGie44 Mind if I have a crack at that?
Most helpful comment
@anGie44 Mind if I have a crack at that?