You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixes#5812
Currently used engine version `8.0.mysql_aurora.3.02.0` for aurora-mysql doesn't exists in AWS any more.
Based on the following script which grabs latest supported version of `aurora-mysql` in all regions - this should be changed to `8.0.mysql_aurora.3.06.0`:
```bash
❯ for REGION in `aws ec2 describe-regions --region us-east-1 --output text | cut -f4`; do
echo "*** ${REGION}"
aws rds describe-db-engine-versions --region "${REGION}" --engine aurora-mysql --query "DBEngineVersions[].EngineVersion" | sort | grep '8.0.mysql_aurora.3' | tail -1
done
*** ap-south-1
"8.0.mysql_aurora.3.06.0"
*** eu-north-1
"8.0.mysql_aurora.3.06.0"
*** eu-west-3
"8.0.mysql_aurora.3.06.0"
*** eu-west-2
"8.0.mysql_aurora.3.06.0"
*** eu-west-1
"8.0.mysql_aurora.3.06.0"
*** ap-northeast-3
"8.0.mysql_aurora.3.06.0"
*** ap-northeast-2
"8.0.mysql_aurora.3.06.0"
*** ap-northeast-1
"8.0.mysql_aurora.3.06.0"
*** ca-central-1
"8.0.mysql_aurora.3.06.0"
*** sa-east-1
"8.0.mysql_aurora.3.06.0"
*** ap-southeast-1
"8.0.mysql_aurora.3.06.0"
*** ap-southeast-2
"8.0.mysql_aurora.3.06.0"
*** eu-central-1
"8.0.mysql_aurora.3.06.0"
*** us-east-1
"8.0.mysql_aurora.3.06.0"
*** us-east-2
"8.0.mysql_aurora.3.06.0"
*** us-west-1
"8.0.mysql_aurora.3.06.0"
*** us-west-2
"8.0.mysql_aurora.3.06.0"
```
0 commit comments