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 1.22.0 ### Affected Resource(s) provider configuration with `aws_iam_auth` ### Terraform Configuration Files ```hcl provider "postgresql" { host = local.host port = 5432 aws_rds_iam_auth = true aws_rds_iam_region =...

this fixes #444 tested to ensure that this works as intended

## Problem It would be highly beneficial to use the `grantRoleDefaultPrivileges` resource to construct queries such as: ```sql ALTER DEFAULT PRIVILEGES IN SCHEMA public GRANT SELECT ON TABLES TO read_only;...

This PR adds support for stored procedures in the provider. Since stored procedures are very similar to functions i based much of this implementation off of the preexisting code for...

This PR adds support for Azure China & Government Cloud for passwordless authentication. I have checked this change with AzureCLI credentials and service principles in Azure Public and Azure China...

Hi there, thanks for creating and maintaining this project. I'm new to Terraform so this question may not necessarily make sense. I'll be grateful for an answer though. Basically, can...

I'm opening this as a draft in case anyone wants to give feedback or test the code. This should allow us to manage event triggers in this provider, here's how...

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

When running too many queries at the same (I have a large amount of users and databases) a command like terraform destroy will break the provider with the error: ```...

Hi, I'm trying to grant with select permission on a database in an AlloyDB instance to an IAM Service Account user. The idea is to grant with this permission without...