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

feita há 2 anos79 visualizações
Sem respostas

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas