Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
If you are interested in working on this issue or have submitted a pull request, please leave a comment
Terraform CLI and Terraform AWS Provider Version
Terraform v0.13.7
AWS v3.47.0
Affected Resource(s)
Data Source aws_rds_engine_version
Terraform Configuration Files
data "aws_rds_engine_version" "last_version" {
engine = "aurora-postgresql"
version = "10.14"
}
Align RDS aurora postgresql engine version in terraform state with the engine version in AWS. it was automatically upgraded with the "auto_minor_upgrade" feature)
Community Note
Terraform CLI and Terraform AWS Provider Version
Terraform v0.13.7 AWS v3.47.0
Affected Resource(s)
Terraform Configuration Files
Debug Output
Expected Behavior
Align RDS aurora postgresql engine version in terraform state with the engine version in AWS. it was automatically upgraded with the "auto_minor_upgrade" feature)
Actual Behavior
"Error: multiple RDS engine versions" running "terraform plan"
Steps to Reproduce
increase minor version in AWS with the auto_minor_version_upgrade flag enabled from 10.13 to 10.14 (its done autamatically by AWS)
modify terraform "engine_version" parameter to 10.14 in order to align terraform state with the current engine_version running in AWS RDS
terraform plan