terraform-provider-postgresql
terraform-provider-postgresql copied to clipboard
Terraform PostgreSQL provider
### Affected Resource(s) - postgresql_server ```hcl resource "postgresql_server" "myserver_postgres" { server_name = "myserver_postgres" fdw_name = "postgres_fdw" options = { host = "foo" dbname = "foodb" port = "5432" } depends_on...
### Terraform Version 1.5.2 ### Affected Resource(s) postgresql_user_mapping ### Terraform Configuration Files ```hcl provider "postgresql" { host = #host port = #port database = "warehouse" username = "postgres" password =...
Hi there, It would be better to set `template` to `template1` in `postgresql_database`: `template1` is default behaviour in [PostgreSQL](https://www.postgresql.org/docs/current/sql-createdatabase.html) and more importantly some cloud providers like GCP set owner of...
### Terraform Version Terraform v1.5.2. ### Affected Resource(s) - postgresql_grant ### Terraform Configuration Files ```hcl terraform { required_providers { postgresql = { source = "cyrilgdn/postgresql" version = "1.19.0" } }...
Hi there, Thank you for opening an issue. Please provide the following information: ### Terraform Version v1.3.6 ### Affected Resource(s) postgresql_role ### Terraform Configuration Files n/a ### Debug Output n/a...
Hi there, After setting up zerotrust for the private VPC hosted RDS, we need to provision a public DNS record for the private RDS to access RDS directly through zerotrust...
Hi there, Thank you for opening an issue. Please provide the following information: ### Terraform Version Terraform v1.4.2 on darwin_amd64 + provider registry.terraform.io/cyrilgdn/postgresql v1.19.0 + provider registry.terraform.io/hashicorp/aws v4.59.0 + provider...
Hi there, Thank you for opening an issue. Please provide the following information: ### Terraform Version - docker image hashicorp/terraform:1.4 - Installing cyrilgdn/postgresql v1.19.0... - Installed cyrilgdn/postgresql v1.19.0 - Installed...
for cluster-based Postgres instance lib/pq supports master discovery through specifying multiple hosts in the connection string. For example, to connect to my instance with `psql` I use the following command...
``` │ Error: error detecting capabilities: error PostgreSQL version: dial tcp: lookup postgresql.default.svc.cluster.local on 192.168.1.1:53: server misbehaving ``` Essentially, I'm having DNS trouble with the terraform postgres provider. It should...