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

### Terraform Version ``` Terraform v1.0.4 on darwin_amd64 + provider registry.terraform.io/cyrilgdn/postgresql v1.14.0 + provider registry.terraform.io/hashicorp/random v3.1.0 ``` ### Affected Resource(s) - postgresql_grant ### Terraform Configuration Files ```hcl terraform { required_version...

Hi there, I'm attempting to leverage the new `postgresql_function` resource to codify existing functions. However, I seem to be unable to decipher what format the `import` statement needs to be...

Hello, We are using the provider very extensively in my organization and we are looking into managing foreign servers and user mappings. Foreign Server: https://www.postgresql.org/docs/current/sql-createserver.html User Mapping: https://www.postgresql.org/docs/current/sql-createusermapping.html I'm looking...

Hi there, Thank you for opening an issue. Please provide the following information: ### Terraform Version N/A ### Affected Resource(s) Please list the resources as a list, for example: -...

Hello. An example of when, when it is reproduced: ``` locals { databases = ["postgres", "second_db"] app_username = "app" admin_username = "admin" read_only_username = "read_only" schema_and_role_name = "public" } provider...

hi there, is there any way to grant multiple schema? maybe something like: ``` resource "postgresql_grant" "schema" { database = var.database_name role = var.role schema = ["public", "other_schema"] object_type =...

Hey there. I'm looking to manage an existing postgres instance that lives in GCP. Everything works fine when I apply changes from a local machine, but I'm running into trouble...

We have a setup with two postgres clusters, where one is in replica mode at all times and automatically switches if there's a failure. Normally when we connect, we specify...

Hi there, Thank you for opening an issue. Please provide the following information: ### Terraform Version Terraform v1.1.9 on darwin_amd64 + provider registry.terraform.io/cyrilgdn/postgresql v1.16.0 ### Affected Resource(s) - postgresql_grant ###...

### Terraform Version ``` ❯ t version Terraform v1.0.11 on darwin_arm64 + provider registry.terraform.io/cyrilgdn/postgresql v1.14.0 ``` ### Affected Resource(s) - postgresql_role ### Terraform Configuration Files ```hcl resource "postgresql_role" "this" {...