File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed
bootstrap/terraform/aws-bootstrap Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 11apiVersion : plural.sh/v1alpha1
22kind : Dependencies
33metadata :
4- description : Creates an EKS cluster and prepares it for bootstrapping
5- version : 0.1.51
4+ description : Creates an EKS cluster and prepares it for bootstrapping
5+ version : 0.1.52
66spec :
77 breaking : true
88 dependencies : []
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ module "vpc" {
1717 database_subnets = var. database_subnets
1818
1919 enable_nat_gateway = true
20- single_nat_gateway = true
20+ single_nat_gateway = false
2121
2222 public_subnet_tags = {
2323 " kubernetes.io/cluster/${var.cluster_name}" = " shared"
Original file line number Diff line number Diff line change 11data "aws_route_table" "worker_private_subnets_route_table" {
2- count = var. enable_vpc_s3_endpoint && length (local. worker_private_subnet_ids ) > 0 ? 1 : 0
3- subnet_id = local. worker_private_subnet_ids [0 ]
2+ count = var. enable_vpc_s3_endpoint && length (local. worker_private_subnet_ids ) > 0 ? length (local . worker_private_subnet_ids ) : 0
3+ subnet_id = local. worker_private_subnet_ids [count . index ]
44}
55
66resource "aws_vpc_endpoint" "s3" {
77 count = var. enable_vpc_s3_endpoint && length (local. worker_private_subnet_ids ) > 0 ? 1 : 0
88 vpc_id = local. vpc_id
99 service_name = " com.amazonaws.${ var . aws_region } .s3"
1010 auto_accept = true
11- route_table_ids = [ data . aws_route_table . worker_private_subnets_route_table [0 ]. id ]
12- }
11+ route_table_ids = data. aws_route_table . worker_private_subnets_route_table [* ]. id
12+ }
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ variable "cluster_log_retention_in_days" {
2828variable "kubernetes_version" {
2929 type = string
3030 description = " Kubernetes version to use for the cluster"
31- default = " 1.23 "
31+ default = " 1.24 "
3232}
3333
3434variable "vpc_cni_addon_version" {
@@ -225,7 +225,7 @@ variable "node_groups_defaults" {
225225
226226 instance_types = [" t3.large" , " t3a.large" ]
227227 disk_size = 50
228- ami_release_version = " 1.23.16-20230217 "
228+ ami_release_version = " 1.24.15-20230816 "
229229 force_update_version = true
230230 ami_type = " AL2_x86_64"
231231 k8s_labels = {}
You can’t perform that action at this time.
0 commit comments