This repository was archived by the owner on Jan 25, 2026. It is now read-only.
chore(rds): Upgrade MySQL engine version to 8.4.5#11
Merged
Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR updates the RDS module to use MySQL engine version 8.4.5 and improves naming consistency for the database parameter group resource.
- Updates MySQL engine version from 8.0.40 to 8.4.5
- Enables major version upgrades for the RDS instance
- Renames parameter group resource and related references for better clarity
Comments suppressed due to low confidence (1)
Modules/RDS/main.tf:13
- MySQL version 8.4.5 may not be a valid or available version in AWS RDS. The MySQL 8.4 series is relatively new and may not be generally available. Please verify that this specific version is supported by AWS RDS in your target region, as unsupported versions will cause deployment failures.
engine_version = "8.4.5"
7888658 to
05907d7
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request updates the RDS module configuration to support a newer MySQL engine version and includes changes to improve naming consistency and enable major version upgrades.
Updates to RDS configuration:
8.0.40to8.4.5in theaws_db_instanceresource to use a newer version of MySQL.allow_major_version_upgradeoption in theaws_db_instanceresource to permit future major version upgrades.Naming consistency improvements:
aws_db_parameter_groupresource fromdb_paramstodb_parameter_groupfor better clarity and consistency.parameter_group_namereference in theaws_db_instanceresource to match the new parameter group name.familyattribute of theaws_db_parameter_groupresource frommysql8.0tomysql8.4to align with the updated MySQL engine version.