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

aws_rds_cluster needs to be able to set Auto minor version upgrade #191

Open
drakeravenspire opened this issue Oct 10, 2024 · 0 comments
Open

Comments

@drakeravenspire
Copy link

Describe the Feature

aws_rds_cluster needs to be able to set Auto minor version upgrade. Currently we are only able to set auto minor version upgrade on the instance level. Unfortunantly AWS now sometimes requires that this be set on both the instance level and the cluster level.

Expected Behavior

When I set enable_auto_minor_version = true using the aws_rds_cluster resource, then the managed rds cluster in AWS will be set Auto minor version upgrade to true in aws.

Use Case

Currently we have AWS clusters with all instances set to enable auto minor version upgrade, however the instances will not pick up the newer minor instances. When we use the AWS CLI to enable the auto_minor_upgrade then the new minor version of the cluster becomes available.

cluster_identifier="cluster-identifier-here"

aws rds modify-db-cluster \
    --db-cluster-identifier "$cluster_identifier" \
    --apply-immediately \
    --auto-minor-version-upgrade

Describe Ideal Solution

add the ability to enable auto minor upgrade on the aws_rds_cluster resource.

Alternatives Considered

We have applied manualy using the CSI as a workaround for now.

Additional Context

No response

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant