You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Are there any plans to add a max_connections argument similar to what the Pulumi postgres Provider has?
I'm using pulumi-mssql to create 7 mssql.Script resources, 6 mssql.Login objects , 2-4 mssql.DatabaseRoleMember objects per login against a Azure SQL database which has a maximum number of external connections of 30. Pulumi manages to exceed this limit and then errors out.
I know that I can use pulumi --parallel to throttle my deployment but this has a large performance cost as most of my resources are being created with other providers in this project.
I don't want to use depends_on as it creates unnatural dependencies and makes destroying or deleting individual resources much more difficult.
This would be super helpful.
Thanks.
The text was updated successfully, but these errors were encountered:
Hi,
Are there any plans to add a
max_connections
argument similar to what the Pulumi postgres Provider has?I'm using
pulumi-mssql
to create 7mssql.Script
resources, 6mssql.Login
objects , 2-4mssql.DatabaseRoleMember
objects per login against a Azure SQL database which has a maximum number of external connections of 30. Pulumi manages to exceed this limit and then errors out.I know that I can use
pulumi --parallel
to throttle my deployment but this has a large performance cost as most of my resources are being created with other providers in this project.I don't want to use
depends_on
as it creates unnatural dependencies and makes destroying or deleting individual resources much more difficult.This would be super helpful.
Thanks.
The text was updated successfully, but these errors were encountered: