This release lets you turn on Aurora's Data API for your Spacelift self-hosted database.
What's new
Enable the RDS Data API
The new rds_enable_http_endpoint flag turns on Aurora's Data API for the cluster. The main draw is the RDS console query editor it unlocks: you can run plain SQL against the database straight from the browser, with no bastion host, VPN, or local client to stand up first. Makes quick inspections and debugging a lot less painful.
module "spacelift" {
source = "github.com/spacelift-io/terraform-aws-spacelift-selfhosted?ref=v2.3.0"
region = "eu-west-1"
rds_engine_version = "18.3"
rds_enable_http_endpoint = true
}The flag defaults to null, so AWS keeps its own default (disabled) and existing clusters aren't touched.
Note
The Data API is only available for Aurora Serverless v2 and provisioned clusters in supported regions.
What's Changed
- feat: allow enabling the RDS Data API by @peterdeme in #51
Full Changelog: v2.2.0...v2.3.0