Error Creating Aurora DB Clusterr

0

We are trying to launch an Aurora DB cluster from a snapshot using CloudFormation template, but getting the following error.

Cannot find version 5.7.mysql_aurora.2.10.2 for aurora (Service: AmazonRDS; Status Code: 400; Error Code: InvalidParameterCombination; Request ID: 10a8c2f0-ee79-4b30-be99-1790f66948e5; Proxy: null).

We are not passing any value for engine version. Also the version "5.7.mysql_aurora.2.10.2" mentioned in the error message is an available version as per the docs.

2 Answers
0
Accepted Answer

I understand that you have not used the engine version in your CF Templare. Try adding engine version and engine in your CF Template and see if it works-

"engineVersion": "5.7.mysql_aurora.2.10.2" "engine": "aurora-mysql"

AWS
D-Rao
answered 2 years ago
0

Suggest always checking the latest engine versions running the following script:

aws rds describe-db-engine-versions --engine aurora-mysql | jq -r '.DBEngineVersions[].EngineVersion'

here is terraform version of the error:

mysql can not find version error creating rds cluster using terraform

elka
answered 8 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions