Skip to content
New issue

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

No documentation for aurora mysql 8 serverless #152

Closed
jacobnollette opened this issue Feb 1, 2023 · 2 comments
Closed

No documentation for aurora mysql 8 serverless #152

jacobnollette opened this issue Feb 1, 2023 · 2 comments
Labels
bug 🐛 An issue with the system

Comments

@jacobnollette
Copy link

Having issues finding out what the cluster family should be for mysql 8 aurora? Any ideas?

@jacobnollette jacobnollette added the bug 🐛 An issue with the system label Feb 1, 2023
@haidargit
Copy link

haidargit commented Jan 30, 2024

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"

aws rds describe-db-engine-versions --query "DBEngineVersions[].DBParameterGroupFamily" --region us-west-2 | grep aurora-mysql

image

good luck!

reference: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithDBInstanceParamGroups.html

@joe-niland
Copy link
Member

Thanks for the info @haidargit

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug 🐛 An issue with the system
Projects
None yet
Development

No branches or pull requests

3 participants