Skip to content

Commit

Permalink
upgrade cluster in examples to 1.25
Browse files Browse the repository at this point in the history
  • Loading branch information
ImpSy committed Mar 29, 2023
1 parent a259486 commit b031184
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion examples/azure-from-scratch/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ variable "cluster_name" {

variable "cluster_version" {
type = string
default = "1.24"
default = "1.25"
}

variable "tags" {
Expand Down
2 changes: 1 addition & 1 deletion examples/azure-from-vpc/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ variable "cluster_name" {

variable "cluster_version" {
type = string
default = "1.24"
default = "1.25"
}

variable "tags" {
Expand Down
2 changes: 1 addition & 1 deletion examples/from-private-vpc/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ variable "cluster_name" {

variable "cluster_version" {
type = string
default = "1.23"
default = "1.25"
}

variable "vpc_id" {
Expand Down
2 changes: 1 addition & 1 deletion examples/from-scratch-with-private-link/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ module "eks" {
version = "~> 18.0"

cluster_name = var.cluster_name
cluster_version = "1.21"
cluster_version = var.cluster_version

cluster_endpoint_private_access = true
cluster_endpoint_public_access = true
Expand Down
5 changes: 5 additions & 0 deletions examples/from-scratch-with-private-link/variable.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ variable "cluster_name" {
type = string
}

variable "cluster_version" {
type = string
default = "1.25"
}

variable "vpc_name" {
type = string
}
Expand Down
2 changes: 1 addition & 1 deletion examples/from-scratch/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ variable "cluster_name" {

variable "cluster_version" {
type = string
default = "1.23"
default = "1.25"
}

variable "vpc_name" {
Expand Down
2 changes: 1 addition & 1 deletion examples/gcp-from-scratch/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ variable "cluster_name" {

variable "cluster_version" {
type = string
default = "1.23"
default = "1.25"
}

variable "region" {
Expand Down
2 changes: 1 addition & 1 deletion examples/gcp-from-vpc/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ variable "cluster_name" {

variable "cluster_version" {
type = string
default = "1.23"
default = "1.25"
}

variable "region" {
Expand Down

0 comments on commit b031184

Please sign in to comment.