Skip to content

Commit

Permalink
RDS: Set engine_version to 8.0.mysql_aurora.3.04.1
Browse files Browse the repository at this point in the history
  • Loading branch information
takano32 committed Feb 22, 2024
1 parent a6124aa commit 1b987e8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions db.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ resource "aws_rds_cluster" "this" {
cluster_identifier = "${var.prefix}-${var.environment}"
database_name = "wordpress"
engine = "aurora-mysql"
engine_version = "8.0.mysql_aurora.3.04.0"
engine_version = "8.0.mysql_aurora.3.04.1"
enable_http_endpoint = false
master_username = var.db_master_username
master_password = var.db_master_password
Expand All @@ -32,7 +32,7 @@ resource "aws_rds_cluster" "this" {

resource "aws_rds_cluster_instance" "cluster_instances" {
engine = "aurora-mysql"
engine_version = "8.0.mysql_aurora.3.04.0"
engine_version = "8.0.mysql_aurora.3.04.1"
cluster_identifier = "${var.prefix}-${var.environment}"
instance_class = "db.serverless"

Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ variable "db_master_password" {
}
variable "db_engine_version" {
description = "The database engine version"
default = "3.03.2"
default = "3.04.1"
}
variable "db_auto_pause" {
description = "Whether to enable auto pause"
Expand Down

0 comments on commit 1b987e8

Please sign in to comment.