Skip to content

Commit 44ca372

Browse files
authored
fix(bug): INFRA-1007 Use mysql major version in var, only (#359)
* INFRA-1007: Use mysql major version in var, only * add trivial comment
1 parent 1a18112 commit 44ca372

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

modules/database/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ variable "vpc_id" {
1919
}
2020

2121
variable "engine_version" {
22-
description = "Version for MySQL Auora to use"
22+
description = "Version for MySQL Auora to use -- major version only"
2323
type = string
24-
default = "8.0.mysql_aurora.3.05.2"
24+
default = "8.0"
2525
}
2626

2727
variable "create_db_subnet_group" {

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ variable "enable_helm_wandb" {
5656
variable "database_engine_version" {
5757
description = "Version for MySQL Aurora"
5858
type = string
59-
default = "8.0.mysql_aurora.3.07.1"
59+
default = "8.0"
6060
}
6161

6262
variable "database_instance_class" {

0 commit comments

Comments
 (0)