terraform-provider-postgresql
terraform-provider-postgresql copied to clipboard
Terraform PostgreSQL provider
This is a problem in general with the provider being a "legacy provider". We had planned enabling management of multiple logical databases on a shared Postgres instance - and we...
### Terraform Version Run `terraform -v` to show the version. If you are not running the latest version of Terraform, please upgrade because your issue may have already been fixed....
### Terraform Version ``` Terraform v1.8.5 on darwin_arm64 + provider registry.terraform.io/crunchydata/crunchybridge v0.2.0 + provider registry.terraform.io/cyrilgdn/postgresql v1.22.0 + provider registry.terraform.io/hashicorp/google v5.38.0 ``` ### Affected Resource(s) - postgresql_function ### Terraform Configuration Files...
In my terraform configuration, I have the postgresql provider configured as follows: ``` provider "postgresql" { scheme = "awspostgres" host = aws_rds_cluster.panopticat.endpoint port = aws_rds_cluster.panopticat.port username = local.credentials["username"] password =...
I added datasource for get current provider basic attributes. It is usable for example for creating resources with host information in tags etc.
Related to @talbx works here: https://github.com/cyrilgdn/terraform-provider-postgresql/pull/339 I confirm that the issue is solved with postgres version under 17 for me. But I still have the issue for "tables" with the...
Closes #352 (the original dev never addressed the review, went AWOL). Relates to #178 (might fix, at least improves the situation). Note: I cannot run the example script as I...
### Terraform Version ``` Terraform v1.9.5 on linux_amd64 + provider registry.terraform.io/cyrilgdn/postgresql v1.21.1-beta.1 ``` ### Affected Resource(s) provider ### Terraform Configuration Files ```hcl provider "postgresql" { host = azurerm_postgresql_flexible_server.instance.fqdn port =...
https://github.com/cyrilgdn/terraform-provider-postgresql/issues/317 Add a different connection_host parameter, so that we can use one hostname to get CSP database permissions, and use another hostname when do psql connect.
I'm trying to grant a permission to a role. I'm getting a confusing error message that's unrelated to the role I'm trying to modify. I've simplified the terraform to isolate...