Skip to content

v2.3.0

Latest

Choose a tag to compare

@github-actions github-actions released this 09 Jun 10:24
· 1 commit to main since this release
v2.3.0
47885da

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

Full Changelog: v2.2.0...v2.3.0