Update Postgres to 15.18 - #108
Merged
Merged
Conversation
Bump RDS engine_version from 15.15 to the latest available 15.x minor (15.18) to pick up the recent PostgreSQL security fixes. Customer ask is the most recent minor of our current major version, not a 16.x upgrade. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
Bumps the module-managed RDS PostgreSQL minor version to the latest 15.x patch release and records the change in the changelog.
Changes:
- Updates the hardcoded RDS
engine_versionfrom15.15to15.18. - Adds an
[Unreleased]changelog entry for the Postgres 15.18 update.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
modules/db/main.tf |
Updates the RDS Postgres engine version used by the DB module. |
CHANGELOG.md |
Documents the Postgres minor-version bump under [Unreleased]. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Member
Author
nl0
approved these changes
May 27, 2026
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
Bump RDS
engine_versionfrom15.15to15.18, the latest available Postgres 15.x minor in RDS.The recent PostgreSQL security release (15.18, 16.14, 17.10, etc.) prompted a customer (via IT) to ask that we move to the most recent minor of whichever major version we run. We're on 15.x, so the target is 15.18 — this is a minor-version patch, not the 16.x major upgrade (which can wait).
Note:
apply_immediately = true, so this minor-version bump applies in place and causes a brief instance restart the momentterraform applyruns — it is not deferred to the RDS maintenance window. Control timing by choosing when to run the apply.TODO
🤖 Generated with Claude Code
Greptile Summary
Bumps the RDS PostgreSQL
engine_versionfrom15.15to15.18in response to a recent PostgreSQL security release, accompanied by the corresponding CHANGELOG entry.modules/db/main.tf: Single-line change updatingengine_versionto\"15.18\"; all other RDS settings (apply_immediately = true,auto_minor_version_upgrade = false, backup, deletion protection, etc.) remain unchanged.CHANGELOG.md: Adds a[Changed]entry under[Unreleased]for this upgrade.Confidence Score: 5/5
Safe to merge — this is a one-line minor-version bump with no schema, config, or behavioral changes beyond the PostgreSQL engine version itself.
The change is minimal and well-scoped: a single RDS engine_version string update from 15.15 to 15.18. Both are within the PostgreSQL 15 minor-version series, so no compatibility concerns apply. The apply_immediately = true behavior (pre-existing) is acknowledged in the PR description, so operators are informed about the immediate restart on apply.
No files require special attention.
Important Files Changed
Sequence Diagram
sequenceDiagram participant Operator participant Terraform participant AWS RDS Operator->>Terraform: terraform apply Terraform->>AWS RDS: Update engine_version 15.15 → 15.18 Note over AWS RDS: apply_immediately=true<br/>triggers immediate restart AWS RDS-->>Terraform: Instance restarting… AWS RDS-->>Terraform: Available (PostgreSQL 15.18) Terraform-->>Operator: Apply completeReviews (2): Last reviewed commit: "Add CHANGELOG entry for Postgres 15.18" | Re-trigger Greptile