Skip to content

Commit fef526c

Browse files
committed
fix: bump default k8s version across providers and fix azure pg private dns zone name
1 parent 268c241 commit fef526c

9 files changed

Lines changed: 12 additions & 12 deletions

File tree

terraform/clouds/aws/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ variable "create_db" {
2525

2626
variable "kubernetes_version" {
2727
type = string
28-
default = "1.32"
28+
default = "1.34"
2929
}
3030

3131
variable "next_kubernetes_version" {
3232
type = string
33-
default = "1.32"
33+
default = "1.34"
3434
}
3535

3636

terraform/clouds/azure/postgres.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ resource "azurerm_private_dns_zone_virtual_network_link" "mysql" {
3131
resource "azurerm_private_dns_zone" "postgres" {
3232
count = var.create_db ? 1 : 0
3333

34-
name = local.db_name
34+
name = var.postgres_dns_zone
3535
resource_group_name = local.resource_group.name
3636
}
3737

terraform/clouds/azure/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ variable "create_db" {
1515

1616
variable "kubernetes_version" {
1717
type = string
18-
default = "1.32"
18+
default = "1.34"
1919
}
2020

2121
variable "next_kubernetes_version" {
2222
type = string
23-
default = "1.32"
23+
default = "1.34"
2424
}
2525

2626
variable "create_resource_group" {

terraform/clouds/gcp/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ variable "deletion_protection" {
1515

1616
variable "kubernetes_version" {
1717
type = string
18-
default = "1.32"
18+
default = "1.34"
1919
}
2020

2121
variable "next_kubernetes_version" {
2222
type = string
23-
default = "1.32"
23+
default = "1.34"
2424
}
2525

2626
variable "node_pools" {

terraform/clouds/linode/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ variable "engine_id" {
3030

3131
variable "kubernetes_vsn" {
3232
type = string
33-
default = "1.27"
33+
default = "1.34"
3434
}
3535

3636
variable "node_pools" {

terraform/modules/clusters/aws/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ variable "public" {
2323

2424
variable "kubernetes_version" {
2525
type = string
26-
default = "1.30"
26+
default = "1.34"
2727
}
2828

2929
variable "vpc_cidr" {

terraform/modules/clusters/azure/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ variable "tier" {
1313

1414
variable "kubernetes_version" {
1515
type = string
16-
default = "1.30.9"
16+
default = "1.34"
1717
}
1818

1919
variable "resource_group_name" {

terraform/modules/clusters/gcp/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ variable "region" {
1919

2020
variable "kubernetes_version" {
2121
type = string
22-
default = "1.32"
22+
default = "1.34"
2323
}
2424

2525
variable "node_pools" {

terraform/modules/clusters/linode/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
variable "kubernetes_vsn" {
33
type = string
4-
default = "1.29"
4+
default = "1.34"
55
}
66

77
variable "cluster" {

0 commit comments

Comments
 (0)