File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -3,19 +3,19 @@ terraform {
33 required_providers {
44 aws = {
55 source = " hashicorp/aws"
6- version = " ~> 5.0 "
6+ version = " * "
77 }
88 helm = {
99 source = " hashicorp/helm"
10- version = " ~> 2.12 "
10+ version = " * "
1111 }
1212 kubernetes = {
1313 source = " hashicorp/kubernetes"
14- version = " ~> 2.25 "
14+ version = " * "
1515 }
1616 time = {
1717 source = " hashicorp/time"
18- version = " ~> 0.9 "
18+ version = " * "
1919 }
2020 }
2121}
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ variable "cluster_name" {
3333variable "cluster_version" {
3434 description = " Kubernetes version"
3535 type = string
36- default = " 1.30 "
36+ default = " 1.33 " # Update this to the latest EKS version if needed
3737}
3838
3939
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ variable "namespace" {
1212variable "chart_version" {
1313 description = " ArgoCD Helm chart version"
1414 type = string
15- default = null
15+ default = null # Use latest chart by default
1616}
1717
1818variable "service_type" {
You can’t perform that action at this time.
0 commit comments