sql 0.5.0 published on Monday, Apr 14, 2025 by paultyng
Sql Provider
Generate Provider
The Sql provider must be installed as a Local Package by following the instructions for Any Terraform Provider:
pulumi package add terraform-provider paultyng/sql
Configuration Reference
maxIdleConns
(Number) Sets the maximum number of connections in the idle connection pool. Default is2
. See Go’s documentation on DB.SetMaxIdleConns.maxOpenConns
(Number) Sets the maximum number of open connections to the database. Default is0
(unlimited). See Go’s documentation on DB.SetMaxOpenConns.url
(String) Database connection strings are specified via URLs. The URL format is driver dependent but generally has the form:dbdriver://username:password@host:port/dbname?param1=true¶m2=false
. You can optionally set theSQL_URL
environment variable instead.