From 05651657a60d092a97888749cd877cb6c38a1c33 Mon Sep 17 00:00:00 2001 From: jsbroks Date: Mon, 25 Mar 2024 00:19:40 +0000 Subject: [PATCH] fix: Set MySQL default version to MYSQL_8_0_36 --- 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 dc891b54..0cd1f75b 100644 --- a/README.md +++ b/README.md @@ -99,7 +99,7 @@ No resources. | [create\_redis](#input\_create\_redis) | Boolean indicating whether to provision an redis instance (true) or not (false). | `bool` | `false` | 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_36"` | 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..b8b6c018 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_36" } variable "sort_buffer_size" { diff --git a/variables.tf b/variables.tf index a2cbff87..89400ce3 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_36" } variable "database_machine_type" {