Open
Description
Why do you want this feature?
Currently you can create a VPC with the CIDR block, but you cannot customize the subnet CIDR range and AZs that they belong to.
apiVersion: eksctl.io/v1alpha5
kind: ClusterConfig
metadata:
name: foo-cluster
region: ap-northeast-1
vpc:
cidr: "10.0.0.0/16"
What feature/behavior/change do you want?
Without giving a subnet ID, it should be able to create new subnets on the AZs
apiVersion: eksctl.io/v1alpha5
kind: ClusterConfig
metadata:
name: foo-cluster
region: ap-northeast-1
vpc:
cidr: "10.0.0.0/16"
subnets:
private:
ap-northeast-1a:
cidr: "10.0.0.0/24"
ap-northeast-1b:
cidr: "10.0.1.0/24"
public:
ap-northeast-1a:
cidr: "10.0.2.0/24"
ap-northeast-1b:
cidr: "10.0.3.0/24"