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

For example when working with cloud databases, we usually have the SSL certificate material available directly as terraform variables (e.g. `google_sql_database_instance.mydb.server_ca_cert.0.cert`). Currently, we have to write those to temporary files...

This change will add in a new resource to the provider, `ALTER_ROLE`. The resource is designed to be used where you need to alter certain attributes on a role. For...

Hi there, Thank you for opening an issue. Please provide the following information: ### Terraform Version 0.13.6 ### Affected Resource(s) - provider "postgresql" - resource "postgresql_database" ### Terraform Configuration Files...

### Terraform Version 1.1.1 ### Affected Resource(s) - `postgresql_grant` ### Terraform Configuration Files ```terraform provider "postgresql" { host = var.postgres_host port = var.postgres_port username = var.root_user_name password = var.root_user_password expected_version...

Hi, I really appreciate the postgres provider. I need to grant the create a privilege to a role in a database like this: `grant create on database userdb to customrole;`...

Hi, Please can you help me. I have a Fargate/RDS terraform build. I'm constantly struggling trying to get Terraform to work with the postgreSQL connector. (I'm still here at 4pm...

Hi there, ### Terraform Version ``` Terraform v0.12.29 + provider.postgresql v1.7.1 ``` ### Affected Resource(s) - postgresql_grant ### Terraform Configuration Files ```hcl resource "postgresql_database" "this" { name = var.name owner...

Please add support for GCP AlloyDB connector similar to Cloudsql Proxy. [1]https://github.com/GoogleCloudPlatform/alloydb-go-connector

### Terraform Version ``` Terraform v1.2.6 on darwin_arm64 + provider registry.terraform.io/cyrilgdn/postgresql v1.16.0 ``` ### Affected Resource(s) `postgresql_*` ### Expected Behavior The provider should use the OS's resolver, so that DNS...

Can I create resource `postgresql_function` and set parameter `database`? Today when I run `postgresql_function`, It is create in default database connection.