Bug Report: InvalidParameterCombination: DBInstanceClass=db.t3.micro, Engine=mariadb, EngineVersion=10.6.10, LicenseModel=general-public-license

0

I think I discovered a bug. I tried running my Terraform code for my resources in Region Asia Pacific (Jakarta) ap-southeast-3.

Previously it's something like this

resource "aws_db_instance" "test_database" {
  allocated_storage               = 30
  max_allocated_storage           = 100
  engine                          = "mariadb"
  engine_version                  = "10.6.8"

Then the console output

InvalidParameterCombination: Cannot upgrade mariadb from 10.6.10 to 10.6.8

I tried changing to 10.6

resource "aws_db_instance" "test_database" {
  allocated_storage               = 30
  max_allocated_storage           = 100
  engine                          = "mariadb"
  engine_version                  = "10.6"

It shows

InvalidParameterCombination: RDS does not support creating a DB instance with the following combination: DBInstanceClass=db.t3.micro, Engine=mariadb, EngineVersion=10.6.10, LicenseModel=general-public-license. For supported combinations of instance class and database engine version, see the documentation.

I checked in the RDS console for my instance. It's somewhat already in version 10.6.10.

Enter image description here

But when I tried modify the instance, the options shows nothing

Enter image description here

Then I tried creating a new RDS, there is no options 10.6.10.

Enter image description here

已提問 2 年前檢視次數 80 次
沒有答案

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南