-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature Request: Enable Connection Pooling and Retrieve Pooler Hostname #142
Comments
Supported in v1.4.0 |
@Khyme name = var.timescale_instance
enable_ha_replica = false
memory_gb = var.memory_gb
milli_cpu = var.milli_cpu
region_code = var.aws_region
vpc_id = var.vpc_id
connection_pooler_enabled = true
lifecycle {
create_before_destroy = true
prevent_destroy = true
}
}
`output "timescale_service_host" {
value = timescale_service.service.pooler_hostname
}`
here is my lock file that shows i have installed recommended version
1.4.1
provider "registry.terraform.io/timescale/timescale" {
|
I'm using the TimescaleDB Terraform provider and noticed it doesn't support enabling connection pooling or retrieving the pooler hostname.
This feature is crucial for my application's performance and ease of connection. Currently, I'm manually constructing the pooler hostname, which isn't ideal.
I request a feature to enable connection pooling and retrieve the pooler hostname directly from the TimescaleDB service resource.
Thank you for considering this request.
Best,
Shabab Qaisar
The text was updated successfully, but these errors were encountered: