From 672bf573b3447c0327e86ea0b8de3f1a06e99c2f Mon Sep 17 00:00:00 2001 From: jsbroks Date: Mon, 24 Jun 2024 00:21:24 +0000 Subject: [PATCH] fix: Set MySQL default version to MYSQL_8_0_37 --- README.md | 2 +- modules/database/variables.tf | 2 +- variables.tf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f3979f66..08d2f16a 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ resources that lack official modules. | [create\_workload\_identity](#input\_create\_workload\_identity) | Flag to indicate whether to create a workload identity for the service account. | `bool` | `true` | no | | [database\_machine\_type](#input\_database\_machine\_type) | Specifies the machine type to be allocated for the database | `string` | `"db-n1-standard-2"` | no | | [database\_sort\_buffer\_size](#input\_database\_sort\_buffer\_size) | Specifies the sort\_buffer\_size value to set for the database | `number` | `67108864` | no | -| [database\_version](#input\_database\_version) | Version for MySQL | `string` | `"MYSQL_8_0_31"` | no | +| [database\_version](#input\_database\_version) | Version for MySQL | `string` | `"MYSQL_8_0_37"` | no | | [deletion\_protection](#input\_deletion\_protection) | If the instance should have deletion protection enabled. The database / Bucket can't be deleted when this value is set to `true`. | `bool` | `true` | no | | [disable\_code\_saving](#input\_disable\_code\_saving) | Boolean indicating if code saving is disabled | `bool` | `false` | no | | [domain\_name](#input\_domain\_name) | Domain for accessing the Weights & Biases UI. | `string` | `null` | no | diff --git a/modules/database/variables.tf b/modules/database/variables.tf index 2964d984..7d403a5d 100644 --- a/modules/database/variables.tf +++ b/modules/database/variables.tf @@ -57,7 +57,7 @@ variable "labels" { variable "database_version" { description = "Version for MySQL" type = string - default = "MYSQL_8_0_31" + default = "MYSQL_8_0_37" } variable "sort_buffer_size" { diff --git a/variables.tf b/variables.tf index 510d6f1e..04cc6261 100644 --- a/variables.tf +++ b/variables.tf @@ -144,7 +144,7 @@ variable "ssl" { variable "database_version" { description = "Version for MySQL" type = string - default = "MYSQL_8_0_31" + default = "MYSQL_8_0_37" } variable "database_machine_type" {