From b57bda2fa0d66157a39d5f0102064f650b783cc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eligio=20Mari=C3=B1o?= <22875166+gmeligio@users.noreply.github.com> Date: Sun, 12 May 2024 22:44:54 +0200 Subject: [PATCH] feat(aws_docdb_cluster): set engine_version to 5.0.0 as default --- variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variables.tf b/variables.tf index c02ea84..18f20a8 100644 --- a/variables.tf +++ b/variables.tf @@ -141,7 +141,7 @@ variable "engine" { variable "engine_version" { type = string - default = "3.6.0" + default = "5.0.0" description = "The version number of the database engine to use" }