terraform-provider-postgresql
terraform-provider-postgresql copied to clipboard
Terraform PostgreSQL provider
Bumps [golang.org/x/net](https://github.com/golang/net) from 0.13.0 to 0.17.0. Commits b225e7c http2: limit maximum handler goroutines to MaxConcurrentStreams 88194ad go.mod: update golang.org/x dependencies 2b60a61 quic: fix several bugs in flow control accounting 73d82ef...
Hello, this is a follow-up to https://github.com/cyrilgdn/terraform-provider-postgresql/pull/307/files The regex to extract the function attributes relies on `pg_get_functiondef` to return the attributes in a specific order of `IMMUTABLE/STABLE`, then `PARALLEL SAFE/RESTRICTED`,...
This should be a fix for #178. From what I can tell, the locks created in `pgLockRole` and `pgLockDatabase` were not sufficient to cover cases when we're messing with a...
The PostgreSQL role used by the TERRAFORM provider can be owner of PostgreSQL owner of database or schema through role granted. In this PR, SQL checks are enriched by an...
Hi there, Turns out https://github.com/cyrilgdn/terraform-provider-postgresql/pull/344 broke usernames with colon and introduced a security issue (username leakage into conn string). This is because `PathEscape` does not escape colons as one would...
Hello, This is a feature request to manage event triggers. ### Terraform Version 1.6.0 ### Affected Resource(s) ### Terraform Configuration Files ### Debug Output ### Panic Output ### Expected Behavior...
With IPv6 port gets duplicated like below ``` Error: Error connecting to PostgreSQL server fd00::1 (scheme: postgres): dial tcp [fd00::1:5432]:5432: i/o timeout ```
## Description The provider is able to `CREATE` grants on partitioned tables, but is not able to see the grants upon a subsequent `SELECT`. This leads to the following problems:...
Hi, In our PG database, there are a lot of views and it is hard to manage them. We're thinking if we can use Terraform to manage all the views...
Hi there, I'm having a requirement to set copy_data to false when creating a SUBSCRIPTION. In PG it could be done with simple SQL query: ``` CREATE SUBSCRIPTION SUBNAME CONNECTION...