Viewing docs for sql 0.5.0
published on Monday, Apr 14, 2025 by DEPRECATED
published on Monday, Apr 14, 2025 by DEPRECATED
Sql Provider
I want to use the Pulumi sql package (sql) in my project.
## Provider details
- Package: sql
- Version: 0.5.0
- Publisher: DEPRECATED
- Source: opentofu
- Repository: https://github.com/paultyng/terraform-provider-sql
Help me get started using this provider. Show me a complete Pulumi program that provisions a common resource, including all necessary configuration and imports.
Viewing docs for sql 0.5.0
published on Monday, Apr 14, 2025 by DEPRECATED
published on Monday, Apr 14, 2025 by DEPRECATED
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_URLenvironment variable instead.
Viewing docs for sql 0.5.0
published on Monday, Apr 14, 2025 by DEPRECATED
published on Monday, Apr 14, 2025 by DEPRECATED
