published on Thursday, Apr 23, 2026 by Pulumi
published on Thursday, Apr 23, 2026 by Pulumi
Creates and manages a connection pool in an Aiven for PostgreSQL® service. If this resource is missing (for example, after a service power off), it’s removed from the state and a new create plan is generated.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aiven from "@pulumi/aiven";
const main = new aiven.ConnectionPool("main", {
project: exampleProject.project,
serviceName: examplePostgres.serviceName,
databaseName: mainAivenPgDatabase.databaseName,
poolMode: "transaction",
poolName: "example-pool",
poolSize: 10,
username: exampleUser.username,
});
import pulumi
import pulumi_aiven as aiven
main = aiven.ConnectionPool("main",
project=example_project["project"],
service_name=example_postgres["serviceName"],
database_name=main_aiven_pg_database["databaseName"],
pool_mode="transaction",
pool_name="example-pool",
pool_size=10,
username=example_user["username"])
package main
import (
"github.com/pulumi/pulumi-aiven/sdk/v6/go/aiven"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := aiven.NewConnectionPool(ctx, "main", &aiven.ConnectionPoolArgs{
Project: pulumi.Any(exampleProject.Project),
ServiceName: pulumi.Any(examplePostgres.ServiceName),
DatabaseName: pulumi.Any(mainAivenPgDatabase.DatabaseName),
PoolMode: pulumi.String("transaction"),
PoolName: pulumi.String("example-pool"),
PoolSize: pulumi.Int(10),
Username: pulumi.Any(exampleUser.Username),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aiven = Pulumi.Aiven;
return await Deployment.RunAsync(() =>
{
var main = new Aiven.Index.ConnectionPool("main", new()
{
Project = exampleProject.Project,
ServiceName = examplePostgres.ServiceName,
DatabaseName = mainAivenPgDatabase.DatabaseName,
PoolMode = "transaction",
PoolName = "example-pool",
PoolSize = 10,
Username = exampleUser.Username,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aiven.ConnectionPool;
import com.pulumi.aiven.ConnectionPoolArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var main = new ConnectionPool("main", ConnectionPoolArgs.builder()
.project(exampleProject.project())
.serviceName(examplePostgres.serviceName())
.databaseName(mainAivenPgDatabase.databaseName())
.poolMode("transaction")
.poolName("example-pool")
.poolSize(10)
.username(exampleUser.username())
.build());
}
}
resources:
main:
type: aiven:ConnectionPool
properties:
project: ${exampleProject.project}
serviceName: ${examplePostgres.serviceName}
databaseName: ${mainAivenPgDatabase.databaseName}
poolMode: transaction
poolName: example-pool
poolSize: 10
username: ${exampleUser.username}
Create ConnectionPool Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ConnectionPool(name: string, args: ConnectionPoolArgs, opts?: CustomResourceOptions);@overload
def ConnectionPool(resource_name: str,
args: ConnectionPoolArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ConnectionPool(resource_name: str,
opts: Optional[ResourceOptions] = None,
database_name: Optional[str] = None,
pool_name: Optional[str] = None,
project: Optional[str] = None,
service_name: Optional[str] = None,
pool_mode: Optional[str] = None,
pool_size: Optional[int] = None,
timeouts: Optional[ConnectionPoolTimeoutsArgs] = None,
username: Optional[str] = None)func NewConnectionPool(ctx *Context, name string, args ConnectionPoolArgs, opts ...ResourceOption) (*ConnectionPool, error)public ConnectionPool(string name, ConnectionPoolArgs args, CustomResourceOptions? opts = null)
public ConnectionPool(String name, ConnectionPoolArgs args)
public ConnectionPool(String name, ConnectionPoolArgs args, CustomResourceOptions options)
type: aiven:ConnectionPool
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ConnectionPoolArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ConnectionPoolArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ConnectionPoolArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ConnectionPoolArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ConnectionPoolArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var connectionPoolResource = new Aiven.ConnectionPool("connectionPoolResource", new()
{
DatabaseName = "string",
PoolName = "string",
Project = "string",
ServiceName = "string",
PoolMode = "string",
PoolSize = 0,
Timeouts = new Aiven.Inputs.ConnectionPoolTimeoutsArgs
{
Create = "string",
Delete = "string",
Read = "string",
Update = "string",
},
Username = "string",
});
example, err := aiven.NewConnectionPool(ctx, "connectionPoolResource", &aiven.ConnectionPoolArgs{
DatabaseName: pulumi.String("string"),
PoolName: pulumi.String("string"),
Project: pulumi.String("string"),
ServiceName: pulumi.String("string"),
PoolMode: pulumi.String("string"),
PoolSize: pulumi.Int(0),
Timeouts: &aiven.ConnectionPoolTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Read: pulumi.String("string"),
Update: pulumi.String("string"),
},
Username: pulumi.String("string"),
})
var connectionPoolResource = new ConnectionPool("connectionPoolResource", ConnectionPoolArgs.builder()
.databaseName("string")
.poolName("string")
.project("string")
.serviceName("string")
.poolMode("string")
.poolSize(0)
.timeouts(ConnectionPoolTimeoutsArgs.builder()
.create("string")
.delete("string")
.read("string")
.update("string")
.build())
.username("string")
.build());
connection_pool_resource = aiven.ConnectionPool("connectionPoolResource",
database_name="string",
pool_name="string",
project="string",
service_name="string",
pool_mode="string",
pool_size=0,
timeouts={
"create": "string",
"delete": "string",
"read": "string",
"update": "string",
},
username="string")
const connectionPoolResource = new aiven.ConnectionPool("connectionPoolResource", {
databaseName: "string",
poolName: "string",
project: "string",
serviceName: "string",
poolMode: "string",
poolSize: 0,
timeouts: {
create: "string",
"delete": "string",
read: "string",
update: "string",
},
username: "string",
});
type: aiven:ConnectionPool
properties:
databaseName: string
poolMode: string
poolName: string
poolSize: 0
project: string
serviceName: string
timeouts:
create: string
delete: string
read: string
update: string
username: string
ConnectionPool Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ConnectionPool resource accepts the following input properties:
- Database
Name string - Service database name. Maximum length:
63. Changing this property forces recreation of the resource. - Pool
Name string - PgBouncer connection pool name. Maximum length:
63. Changing this property forces recreation of the resource. - Project string
- Project name. Changing this property forces recreation of the resource.
- Service
Name string - Service name. Changing this property forces recreation of the resource.
- Pool
Mode string - PGBouncer pool mode. The possible values are
session,statementandtransaction. The default value istransaction. - Pool
Size int - Size of PGBouncer's PostgreSQL side connection pool. Value must be between
1and10000. The default value is10. - Timeouts
Connection
Pool Timeouts - Username string
- Service username. Length must be between
1and64.
- Database
Name string - Service database name. Maximum length:
63. Changing this property forces recreation of the resource. - Pool
Name string - PgBouncer connection pool name. Maximum length:
63. Changing this property forces recreation of the resource. - Project string
- Project name. Changing this property forces recreation of the resource.
- Service
Name string - Service name. Changing this property forces recreation of the resource.
- Pool
Mode string - PGBouncer pool mode. The possible values are
session,statementandtransaction. The default value istransaction. - Pool
Size int - Size of PGBouncer's PostgreSQL side connection pool. Value must be between
1and10000. The default value is10. - Timeouts
Connection
Pool Timeouts Args - Username string
- Service username. Length must be between
1and64.
- database
Name String - Service database name. Maximum length:
63. Changing this property forces recreation of the resource. - pool
Name String - PgBouncer connection pool name. Maximum length:
63. Changing this property forces recreation of the resource. - project String
- Project name. Changing this property forces recreation of the resource.
- service
Name String - Service name. Changing this property forces recreation of the resource.
- pool
Mode String - PGBouncer pool mode. The possible values are
session,statementandtransaction. The default value istransaction. - pool
Size Integer - Size of PGBouncer's PostgreSQL side connection pool. Value must be between
1and10000. The default value is10. - timeouts
Connection
Pool Timeouts - username String
- Service username. Length must be between
1and64.
- database
Name string - Service database name. Maximum length:
63. Changing this property forces recreation of the resource. - pool
Name string - PgBouncer connection pool name. Maximum length:
63. Changing this property forces recreation of the resource. - project string
- Project name. Changing this property forces recreation of the resource.
- service
Name string - Service name. Changing this property forces recreation of the resource.
- pool
Mode string - PGBouncer pool mode. The possible values are
session,statementandtransaction. The default value istransaction. - pool
Size number - Size of PGBouncer's PostgreSQL side connection pool. Value must be between
1and10000. The default value is10. - timeouts
Connection
Pool Timeouts - username string
- Service username. Length must be between
1and64.
- database_
name str - Service database name. Maximum length:
63. Changing this property forces recreation of the resource. - pool_
name str - PgBouncer connection pool name. Maximum length:
63. Changing this property forces recreation of the resource. - project str
- Project name. Changing this property forces recreation of the resource.
- service_
name str - Service name. Changing this property forces recreation of the resource.
- pool_
mode str - PGBouncer pool mode. The possible values are
session,statementandtransaction. The default value istransaction. - pool_
size int - Size of PGBouncer's PostgreSQL side connection pool. Value must be between
1and10000. The default value is10. - timeouts
Connection
Pool Timeouts Args - username str
- Service username. Length must be between
1and64.
- database
Name String - Service database name. Maximum length:
63. Changing this property forces recreation of the resource. - pool
Name String - PgBouncer connection pool name. Maximum length:
63. Changing this property forces recreation of the resource. - project String
- Project name. Changing this property forces recreation of the resource.
- service
Name String - Service name. Changing this property forces recreation of the resource.
- pool
Mode String - PGBouncer pool mode. The possible values are
session,statementandtransaction. The default value istransaction. - pool
Size Number - Size of PGBouncer's PostgreSQL side connection pool. Value must be between
1and10000. The default value is10. - timeouts Property Map
- username String
- Service username. Length must be between
1and64.
Outputs
All input properties are implicitly available as output properties. Additionally, the ConnectionPool resource produces the following output properties:
- Connection
Uri string - Connection URI for the DB pool.
- Id string
- The provider-assigned unique ID for this managed resource.
- Connection
Uri string - Connection URI for the DB pool.
- Id string
- The provider-assigned unique ID for this managed resource.
- connection
Uri String - Connection URI for the DB pool.
- id String
- The provider-assigned unique ID for this managed resource.
- connection
Uri string - Connection URI for the DB pool.
- id string
- The provider-assigned unique ID for this managed resource.
- connection_
uri str - Connection URI for the DB pool.
- id str
- The provider-assigned unique ID for this managed resource.
- connection
Uri String - Connection URI for the DB pool.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ConnectionPool Resource
Get an existing ConnectionPool resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ConnectionPoolState, opts?: CustomResourceOptions): ConnectionPool@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
connection_uri: Optional[str] = None,
database_name: Optional[str] = None,
pool_mode: Optional[str] = None,
pool_name: Optional[str] = None,
pool_size: Optional[int] = None,
project: Optional[str] = None,
service_name: Optional[str] = None,
timeouts: Optional[ConnectionPoolTimeoutsArgs] = None,
username: Optional[str] = None) -> ConnectionPoolfunc GetConnectionPool(ctx *Context, name string, id IDInput, state *ConnectionPoolState, opts ...ResourceOption) (*ConnectionPool, error)public static ConnectionPool Get(string name, Input<string> id, ConnectionPoolState? state, CustomResourceOptions? opts = null)public static ConnectionPool get(String name, Output<String> id, ConnectionPoolState state, CustomResourceOptions options)resources: _: type: aiven:ConnectionPool get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Connection
Uri string - Connection URI for the DB pool.
- Database
Name string - Service database name. Maximum length:
63. Changing this property forces recreation of the resource. - Pool
Mode string - PGBouncer pool mode. The possible values are
session,statementandtransaction. The default value istransaction. - Pool
Name string - PgBouncer connection pool name. Maximum length:
63. Changing this property forces recreation of the resource. - Pool
Size int - Size of PGBouncer's PostgreSQL side connection pool. Value must be between
1and10000. The default value is10. - Project string
- Project name. Changing this property forces recreation of the resource.
- Service
Name string - Service name. Changing this property forces recreation of the resource.
- Timeouts
Connection
Pool Timeouts - Username string
- Service username. Length must be between
1and64.
- Connection
Uri string - Connection URI for the DB pool.
- Database
Name string - Service database name. Maximum length:
63. Changing this property forces recreation of the resource. - Pool
Mode string - PGBouncer pool mode. The possible values are
session,statementandtransaction. The default value istransaction. - Pool
Name string - PgBouncer connection pool name. Maximum length:
63. Changing this property forces recreation of the resource. - Pool
Size int - Size of PGBouncer's PostgreSQL side connection pool. Value must be between
1and10000. The default value is10. - Project string
- Project name. Changing this property forces recreation of the resource.
- Service
Name string - Service name. Changing this property forces recreation of the resource.
- Timeouts
Connection
Pool Timeouts Args - Username string
- Service username. Length must be between
1and64.
- connection
Uri String - Connection URI for the DB pool.
- database
Name String - Service database name. Maximum length:
63. Changing this property forces recreation of the resource. - pool
Mode String - PGBouncer pool mode. The possible values are
session,statementandtransaction. The default value istransaction. - pool
Name String - PgBouncer connection pool name. Maximum length:
63. Changing this property forces recreation of the resource. - pool
Size Integer - Size of PGBouncer's PostgreSQL side connection pool. Value must be between
1and10000. The default value is10. - project String
- Project name. Changing this property forces recreation of the resource.
- service
Name String - Service name. Changing this property forces recreation of the resource.
- timeouts
Connection
Pool Timeouts - username String
- Service username. Length must be between
1and64.
- connection
Uri string - Connection URI for the DB pool.
- database
Name string - Service database name. Maximum length:
63. Changing this property forces recreation of the resource. - pool
Mode string - PGBouncer pool mode. The possible values are
session,statementandtransaction. The default value istransaction. - pool
Name string - PgBouncer connection pool name. Maximum length:
63. Changing this property forces recreation of the resource. - pool
Size number - Size of PGBouncer's PostgreSQL side connection pool. Value must be between
1and10000. The default value is10. - project string
- Project name. Changing this property forces recreation of the resource.
- service
Name string - Service name. Changing this property forces recreation of the resource.
- timeouts
Connection
Pool Timeouts - username string
- Service username. Length must be between
1and64.
- connection_
uri str - Connection URI for the DB pool.
- database_
name str - Service database name. Maximum length:
63. Changing this property forces recreation of the resource. - pool_
mode str - PGBouncer pool mode. The possible values are
session,statementandtransaction. The default value istransaction. - pool_
name str - PgBouncer connection pool name. Maximum length:
63. Changing this property forces recreation of the resource. - pool_
size int - Size of PGBouncer's PostgreSQL side connection pool. Value must be between
1and10000. The default value is10. - project str
- Project name. Changing this property forces recreation of the resource.
- service_
name str - Service name. Changing this property forces recreation of the resource.
- timeouts
Connection
Pool Timeouts Args - username str
- Service username. Length must be between
1and64.
- connection
Uri String - Connection URI for the DB pool.
- database
Name String - Service database name. Maximum length:
63. Changing this property forces recreation of the resource. - pool
Mode String - PGBouncer pool mode. The possible values are
session,statementandtransaction. The default value istransaction. - pool
Name String - PgBouncer connection pool name. Maximum length:
63. Changing this property forces recreation of the resource. - pool
Size Number - Size of PGBouncer's PostgreSQL side connection pool. Value must be between
1and10000. The default value is10. - project String
- Project name. Changing this property forces recreation of the resource.
- service
Name String - Service name. Changing this property forces recreation of the resource.
- timeouts Property Map
- username String
- Service username. Length must be between
1and64.
Supporting Types
ConnectionPoolTimeouts, ConnectionPoolTimeoutsArgs
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Default string
- Timeout for all operations. Deprecated, use operation-specific timeouts instead.
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- Read string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Default string
- Timeout for all operations. Deprecated, use operation-specific timeouts instead.
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- Read string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- default_ String
- Timeout for all operations. Deprecated, use operation-specific timeouts instead.
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- read String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- default string
- Timeout for all operations. Deprecated, use operation-specific timeouts instead.
- delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- read string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- default str
- Timeout for all operations. Deprecated, use operation-specific timeouts instead.
- delete str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- read str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- update str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- default String
- Timeout for all operations. Deprecated, use operation-specific timeouts instead.
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- read String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
Import
$ pulumi import aiven:index/connectionPool:ConnectionPool example PROJECT/SERVICE_NAME/POOL_NAME
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Aiven pulumi/pulumi-aiven
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aivenTerraform Provider.
published on Thursday, Apr 23, 2026 by Pulumi
