From c13b66cae44a080074d4d1161040e4248445c5f4 Mon Sep 17 00:00:00 2001 From: Edward Viaene Date: Mon, 19 Apr 2021 10:17:04 -0400 Subject: [PATCH] bump mariadb version --- demo-12/rds.tf | 4 ++-- demo-17/rds.tf | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/demo-12/rds.tf b/demo-12/rds.tf index 9aee3c6..15fbd4c 100644 --- a/demo-12/rds.tf +++ b/demo-12/rds.tf @@ -6,7 +6,7 @@ resource "aws_db_subnet_group" "mariadb-subnet" { resource "aws_db_parameter_group" "mariadb-parameters" { name = "mariadb-parameters" - family = "mariadb10.1" + family = "mariadb10.4" description = "MariaDB parameter group" parameter { @@ -18,7 +18,7 @@ resource "aws_db_parameter_group" "mariadb-parameters" { resource "aws_db_instance" "mariadb" { allocated_storage = 100 # 100 GB of storage, gives us more IOPS than a lower number engine = "mariadb" - engine_version = "10.1.14" + engine_version = "10.4.13" instance_class = "db.t2.small" # use micro if you want to use the free tier identifier = "mariadb" name = "mariadb" diff --git a/demo-17/rds.tf b/demo-17/rds.tf index a98519c..909c2cb 100644 --- a/demo-17/rds.tf +++ b/demo-17/rds.tf @@ -6,7 +6,7 @@ resource "aws_db_subnet_group" "mariadb-subnet" { resource "aws_db_parameter_group" "mariadb-parameters" { name = "mariadb-params" - family = "mariadb10.1" + family = "mariadb10.4" description = "MariaDB parameter group" parameter { @@ -18,7 +18,7 @@ resource "aws_db_parameter_group" "mariadb-parameters" { resource "aws_db_instance" "mariadb" { allocated_storage = 100 # 100 GB of storage, gives us more IOPS than a lower number engine = "mariadb" - engine_version = "10.1.14" + engine_version = "10.4.13" instance_class = "db.t2.small" # use micro if you want to use the free tier identifier = "mariadb" name = "mydatabase" # database name