terraform-provider-postgresql icon indicating copy to clipboard operation
terraform-provider-postgresql copied to clipboard

Terraform PostgreSQL provider

Results 219 terraform-provider-postgresql issues
Sort by recently updated
recently updated
newest added

Adds an optional, repeatable `parameter` block to the `postgresql_role` resource, which is used to define arbitary configuration parameters for the role. This is equivalent to using `ALTER ROLE [role] SET...

Updated `postgresql_role`. Now it supports postgres ROLE configuration params to accept string values. So you can do: ```tf resource "postgresql_role" "role_with_configuration_parameters" { name = "role_with_configuration_parameters" statement_timeout = "2h" idle_in_transaction_session_timeout =...

Getting this error when running` terraform init` Terraform version 1.6.0 Installing cyrilgdn/postgresql v1.22.0... ╷ │ Error: Failed to install provider │ │ Error while installing cyrilgdn/postgresql v1.22.0: error checking signature:...

Hi there, Thank you for opening an issue. Please provide the following information: ### Terraform Version 1.7.5 ### Affected Resource(s) - postgresql_grant ### Terraform Configuration Files https://github.com/world-federation-of-advertisers/cross-media-measurement/tree/main/src/main/terraform/gcloud/cmms ### Debug Output...

Since PostgreSQL 16.0, there is a dependency check made when revoking grants on roles. Specifically, if role A has a grant with admin rights on role B, and uses these...

### Affected Resource(s) - postgresql_database - postgresql_role provider version: `1.21.0` The issue is likely related to Postgres 16 Permission/Grant changes. ### Terraform Configuration Files ```hcl resource "postgresql_role" "dbs" { for_each...

bug

Hi there, We're encountering a persistent issue during the execution of Terraform apply, consistently receiving the error message: "Error: Could not execute revoke query: pq: tuple concurrently updated." Despite upgrading...

If we setup a provider as such: ``` provider "postgresql" { scheme = "awspostgres" sslmode = "require" ... } ``` And connect to an RDS instance whose CA comes from...

The GoCloud connector used to connect to CloudSQL now has support for IAM auth. This PR aims to update the provider to also support IAM auth. The only change that...

waiting-response

Create a resource to set permissions for a role