Profile Applicability:

Level 1


Description:

The Auto Minor Version Upgrade feature ensures that RDS instances automatically receive minor database engine upgrades when they become available. These upgrades contain important security patches, bug fixes, and performance improvements. Auto Minor Version Upgrade is applied only during the scheduled maintenance window. This setting ensures databases stay updated without requiring manual intervention.

Rationale:

  • Security patches are critical for protecting databases from newly discovered vulnerabilities.

  • Minor upgrades improve performance and stability without introducing breaking changes.

  • AWS occasionally deprecates older minor versions, making updates necessary.

  • Ensures compliance with security best practices and regulatory frameworks like SOC 2, GDPR, HIPAA, and PCI-DSS.

Impact:

  • No major version upgrades occur automatically → Only minor, backward-compatible updates are applied.

  • Some downtime may occur during maintenance if Apply Immediately is selected.

  • If disabled, security patches must be manually applied, increasing administrative effort.

Default Value:

By default, Auto Minor Version Upgrade is NOT enabled.

Pre-Requisites:

  1. IAM permissions to modify RDS instance settings:

    • rds:DescribeDBInstances, rds:ModifyDBInstance

  2. AWS CLI installed (for automation)

  3. List of all RDS instances in your AWS account

Remediation:

Test Plan:

Using AWS Console

Check Auto Minor Version Upgrade for an RDS Instance

  1. Log in to the AWS Console → Open Amazon RDS Console: RDS Console

  2. Click Databases

            

  1. Select an RDS instance        

  2. Click on Maintenance and backups

           

  1. Under the Maintenance section, check Auto Minor Version Upgrade status:

    • Enabled → Compliant

    • Disabled → Not compliant        

  • Repeat for all RDS instances.

Using AWS CLI

Step 1: List All RDS Instances

aws rds describe-db-instances --query 'DBInstances[*].DBInstanceIdentifier'

This will list all RDS instances in your AWS account.
Step 2: Check Auto Minor Version Upgrade for Each Instance

aws rds describe-db-instances --db-instance-identifier <db-name> --query 'DBInstances[*].AutoMinorVersionUpgrade'

Expected Output (If enabled):

[

    true

]

Step 3: Check Auto Minor Version Upgrade for All RDS Instances in a Region

aws rds describe-db-instances --query 'DBInstances[*].[DBInstanceIdentifier,AutoMinorVersionUpgrade]'

This command will list all RDS instances along with their Auto Minor Version Upgrade status.

Implementation Steps:

Using AWS Console.

Step 1: Enable Auto Minor Version Upgrade

  1. Log in to the AWS Console → Open RDS Console

  2. Click Databases → Select the RDS instance

                 

  1. Click Modify

                 

  1. Scroll to Maintenance section

           

  1. Check the box for Auto Minor Version Upgrade

  2. Click Continue

         

  1. Select one of the following:

    • Apply Immediately → Updates take effect immediately (may cause downtime)

    • Apply during the next maintenance window (Recommended for production)

           

  1. Click Modify DB Instance

               

  1. The instance status changes from Available → Modifying → Available

             

  1. Verify that Auto Minor Version Upgrade is now Enabled

  • Repeat for all RDS instances.

Using AWS CLI

Step 1: List All RDS Instances

aws rds describe-db-instances --query 'DBInstances[*].DBInstanceIdentifier'

Find the RDS instance(s) that need updates.

Step 2: Enable Auto Minor Version Upgrade for a Specific Instance

aws rds modify-db-instance --db-instance-identifier <db-name> --auto-minor-version-upgrade --apply-immediately

This enables Auto Minor Version Upgrade and applies the changes immediately.

Step 3: Verify That Auto Minor Version Upgrade is Enabled

aws rds describe-db-instances --db-instance-identifier <db-name> --query 'DBInstances[*].AutoMinorVersionUpgrade'

Expected Output: [ true ]


Backout Plan:

Disable Auto Minor Version Upgrade via AWS Console or CLI:

 aws rds modify-db-instance --db-instance-identifier <db-name> --no-auto-minor-version-upgrade --apply-immediately
  1. Ensure backups exist before making changes.

  2. Restore from snapshot if unexpected issues occur.

References: