From 1eb818cd614c9ac1a296ded62d70192340093ffc Mon Sep 17 00:00:00 2001 From: jsbroks Date: Mon, 22 Apr 2024 00:21:01 +0000 Subject: [PATCH] fix: Set MySQL default version to 8.0.mysql_aurora.3.06.0 --- README.md | 4 +--- modules/database/variables.tf | 2 +- variables.tf | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 2f62840f6..865454bf8 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,6 @@ Users can update the EKS cluster version to the latest version offered by AWS. T Upgrades must be executed in step-wise fashion from one version to the next. You cannot skip versions when upgrading EKS. - ## Requirements | Name | Version | @@ -163,7 +162,7 @@ Upgrades must be executed in step-wise fashion from one version to the next. You | [create\_vpc](#input\_create\_vpc) | Boolean indicating whether to deploy a VPC (true) or not (false). | `bool` | `true` | no | | [custom\_domain\_filter](#input\_custom\_domain\_filter) | A custom domain filter to be used by external-dns instead of the default FQDN. If not set, the local FQDN is used. | `string` | `null` | no | | [database\_binlog\_format](#input\_database\_binlog\_format) | Specifies the binlog\_format value to set for the database | `string` | `"ROW"` | no | -| [database\_engine\_version](#input\_database\_engine\_version) | Version for MySQL Auora | `string` | `"8.0.mysql_aurora.3.03.0"` | no | +| [database\_engine\_version](#input\_database\_engine\_version) | Version for MySQL Auora | `string` | `"8.0.mysql_aurora.3.06.0"` | no | | [database\_innodb\_lru\_scan\_depth](#input\_database\_innodb\_lru\_scan\_depth) | Specifies the innodb\_lru\_scan\_depth value to set for the database | `number` | `128` | no | | [database\_instance\_class](#input\_database\_instance\_class) | Instance type to use by database master instance. | `string` | `"db.r5.large"` | no | | [database\_master\_username](#input\_database\_master\_username) | Specifies the master\_username value to set for the database | `string` | `"wandb"` | no | @@ -243,7 +242,6 @@ Upgrades must be executed in step-wise fashion from one version to the next. You | [redis\_instance\_type](#output\_redis\_instance\_type) | n/a | | [standardized\_size](#output\_standardized\_size) | n/a | | [url](#output\_url) | The URL to the W&B application | - ## Migrations diff --git a/modules/database/variables.tf b/modules/database/variables.tf index f170ad99d..acb9270f4 100644 --- a/modules/database/variables.tf +++ b/modules/database/variables.tf @@ -21,7 +21,7 @@ variable "vpc_id" { variable "engine_version" { description = "Version for MySQL Auora to use" type = string - default = "8.0.mysql_aurora.3.03.0" + default = "8.0.mysql_aurora.3.06.0" } variable "create_db_subnet_group" { diff --git a/variables.tf b/variables.tf index df47571e2..d049b8dca 100644 --- a/variables.tf +++ b/variables.tf @@ -30,7 +30,7 @@ variable "size" { variable "database_engine_version" { description = "Version for MySQL Auora" type = string - default = "8.0.mysql_aurora.3.03.0" + default = "8.0.mysql_aurora.3.06.0" } variable "database_instance_class" {