We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Having issues finding out what the cluster family should be for mysql 8 aurora? Any ideas?
The text was updated successfully, but these errors were encountered:
Hi, run this one-liner aws cli command on your terminal/shell to get the cluster families.
aws rds describe-db-engine-versions --query "DBEngineVersions[].DBParameterGroupFamily" --region <your_region>
you'll get a long list from the output
[ "aurora-mysql5.7", . . . "docdb3.6", . . . "custom-sqlserver-ee-15.0", . . . . . . . . . "db2-se-11.5", . . . etc ]
Then choose the desired family based on your needs/requirements and put it in your Terraform configuration. So this is not a bug, actually.
or.. you can use grep to simplify the cluster family findings, e.g., "aurora-mysql8.0"
grep
"aurora-mysql8.0"
aws rds describe-db-engine-versions --query "DBEngineVersions[].DBParameterGroupFamily" --region us-west-2 | grep aurora-mysql
good luck!
reference: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithDBInstanceParamGroups.html
Sorry, something went wrong.
Thanks for the info @haidargit
No branches or pull requests
Having issues finding out what the cluster family should be for mysql 8 aurora? Any ideas?
The text was updated successfully, but these errors were encountered: