From ce6d2fc80ce4aee2f96d167c76dbbd5b3b36e52c Mon Sep 17 00:00:00 2001
From: michaeljguarino <mguarino46@gmail.com>
Date: Wed, 24 Jan 2024 13:07:34 -0500
Subject: [PATCH] Fix eks addon version

Apparently the minimal build isn't actually generally present despite docs
---
 bootstrap/terraform/aws-bootstrap/deps.yaml    | 4 ++--
 bootstrap/terraform/aws-bootstrap/variables.tf | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/bootstrap/terraform/aws-bootstrap/deps.yaml b/bootstrap/terraform/aws-bootstrap/deps.yaml
index f0c220e85..b95daf74e 100644
--- a/bootstrap/terraform/aws-bootstrap/deps.yaml
+++ b/bootstrap/terraform/aws-bootstrap/deps.yaml
@@ -2,9 +2,9 @@ apiVersion: plural.sh/v1alpha1
 kind: Dependencies
 metadata:
   description: Creates an EKS cluster and prepares it for bootstrapping
-  version: 0.1.55
+  version: 0.1.56
 spec:
-  breaking: true
+  breaking: false
   dependencies: []
   providers:
   - aws
diff --git a/bootstrap/terraform/aws-bootstrap/variables.tf b/bootstrap/terraform/aws-bootstrap/variables.tf
index 41ff2c839..d12aff9bc 100644
--- a/bootstrap/terraform/aws-bootstrap/variables.tf
+++ b/bootstrap/terraform/aws-bootstrap/variables.tf
@@ -73,7 +73,7 @@ variable "core_dns_addon_version" {
 
 variable "kube_proxy_addon_version" {
   type = string
-  default = "v1.25.16-minimal-eksbuild.1"
+  default = "v1.25.16-eksbuild.1"
   description = "The version of the kube-proxy addon to use"
 }