DEV Community

Latchu@DevOps
Latchu@DevOps

Posted on

๐Ÿ“ข Amazon RDS Now Supports Easy Retrieval of Engine Lifecycle Support Dates

Managing the lifecycle of your Amazon RDS databases just got easier! Amazon RDS now provides a simple way to view engine support dates for your database engines โ€” directly from the RDS API or AWS CLI.

๐Ÿง  Whatโ€™s New?

With this new feature, you can now:

  • โœ… View start and end dates for RDS Standard Support
  • โœ… Check if RDS Extended Support is available
  • โœ… Get both support periods in a single response (if available)

This applies to Amazon RDS and Amazon Aurora major engine versions.

๐Ÿ’ก Why It Matters

Previously, finding out when your database engine version would reach its end of support meant digging through documentation or announcements. Now, you can fetch this information programmatically, making it easier to:

  • ๐Ÿ—“๏ธ Plan upgrades ahead of time
  • ๐Ÿ›ก๏ธ Ensure compliance and security
  • ๐Ÿšซ Avoid running unsupported versions

๐Ÿ› ๏ธ Example: Using AWS CLI

Hereโ€™s how you can check support dates for PostgreSQL 11:

aws rds describe-db-engine-versions \
  --engine postgres \
  --engine-version 11 \
  --include-all
Enter fullscreen mode Exit fullscreen mode

Output (simplified):

{
  "Engine": "postgres",
  "EngineVersion": "11",
  "SupportDescription": {
    "StandardSupport": {
      "StartDate": "2018-10-01",
      "EndDate": "2024-11-09"
    },
    "ExtendedSupport": {
      "EndDate": "2026-11-09"
    }
  }
}
Enter fullscreen mode Exit fullscreen mode

Now you know exactly when your engine support ends โ€” and whether Extended Support is an option.

๐Ÿš€ Takeaway

This feature is a great step toward proactive database lifecycle management. If you're running critical workloads on Amazon RDS or Aurora, this new visibility helps ensure business continuity, security, and compliance.

โžก๏ธ Start using it today with the AWS CLI or API!

Let me know what you think about this new feature. Are you planning to use it to manage your DB upgrades better?

Top comments (0)