Commit 3858bf0
authored
chore: fix aurora-mysql engine version (#5813)
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"
```1 parent ae42fd8 commit 3858bf0
File tree
5 files changed
+5
-5
lines changed- internal/pkg
- addon/testdata/storage
- template/templates/addons/aurora
- env
- rdws
- rdws
5 files changed
+5
-5
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
106 | 106 | | |
107 | 107 | | |
108 | 108 | | |
109 | | - | |
| 109 | + | |
110 | 110 | | |
111 | 111 | | |
112 | 112 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
101 | 101 | | |
102 | 102 | | |
103 | 103 | | |
104 | | - | |
| 104 | + | |
105 | 105 | | |
106 | 106 | | |
107 | 107 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
122 | 122 | | |
123 | 123 | | |
124 | 124 | | |
125 | | - | |
| 125 | + | |
126 | 126 | | |
127 | 127 | | |
128 | 128 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
131 | 131 | | |
132 | 132 | | |
133 | 133 | | |
134 | | - | |
| 134 | + | |
135 | 135 | | |
136 | 136 | | |
137 | 137 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
120 | 120 | | |
121 | 121 | | |
122 | 122 | | |
123 | | - | |
| 123 | + | |
124 | 124 | | |
125 | 125 | | |
126 | 126 | | |
| |||
0 commit comments