Skip to content

v2.4.0

Latest

Choose a tag to compare

@cloudposse-releaser cloudposse-releaser released this 03 Jan 10:08
dd07cfc
feat: enable HTTP endpoint for all RDS all clusters @ngoyal16 (#278) ## what
  1. Updated variables.tf to generalize the enable_http_endpoint description, removing the "serverless only" mention.
  2. Modified main.tf to pass the enable_http_endpoint variable directly to the aws_rds_cluster resource, bypassing the previous conditional check that required serverless or serverless_v2 engine modes.
  3. Regenerated README.md to reflect the documentation changes.

why

  1. AWS has expanded support for the RDS Data API (HTTP Endpoint) to include provisioned Aurora clusters (both PostgreSQL and MySQL).
  2. The previous implementation artificially restricted this feature to Serverless clusters, preventing users from leveraging the Data API with standard provisioned instances.
  3. This change unlocks the ability to use the Data API for wider use cases, such as connecting from AWS Lambda or AWS AppSync to provisioned Aurora databases.

references

  1. AWS Documentation: Using the Data API for Aurora Serverless v2 and provisioned DB clusters
  2. Amazon Aurora PostgreSQL now supports RDS Data API
  3. Amazon Aurora MySQL now supports RDS Data API