You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: enable HTTP endpoint for all RDS all clusters @ngoyal16 (#278)
## what
Updated variables.tf to generalize the enable_http_endpoint description, removing the "serverless only" mention.
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.
Regenerated README.md to reflect the documentation changes.
why
AWS has expanded support for the RDS Data API (HTTP Endpoint) to include provisioned Aurora clusters (both PostgreSQL and MySQL).
The previous implementation artificially restricted this feature to Serverless clusters, preventing users from leveraging the Data API with standard provisioned instances.
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.