We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
resource "postgresql_server" "myserver_postgres" { server_name = "myserver_postgres" fdw_name = "postgres_fdw" options = { host = "foo" dbname = "foodb" port = "5432" } depends_on = [postgresql_extension.ext_postgres_fdw] }
I can set database in postgresql_server:
resource "postgresql_server" "myserver_postgres_selected_db" { server_name = "myserver_postgres" database = "my_db" fdw_name = "postgres_fdw" options = { host = "foo" dbname = "foodb" port = "5432" } depends_on = [postgresql_extension.ext_postgres_fdw] }
Like in extension:
resource "postgresql_extension" "ext_postgres_fdw" { name = "postgres_fdw" database = "my_db" }
What actually happened?
Error:
pq: foreign-data wrapper "postgres_fdw" does not exist
terraform apply
I'm using pulumi wrapper github.com/pulumi/pulumi-postgresql
The text was updated successfully, but these errors were encountered:
I am experiencing this as a problem, and also experiencing the same thing on the postgresql_user_mapping resource.
postgresql_user_mapping
Sorry, something went wrong.
Also having this experience with postgresql_server and postgresql_user_mapping. Has anyone found a workaround?
postgresql_server
I am encountering this same issue with the latest provider version.
UP
No branches or pull requests
Affected Resource(s)
Expected Behavior
I can set database in postgresql_server:
Like in extension:
Actual Behavior
What actually happened?
Error:
Steps to Reproduce
terraform apply
Important Factoids
I'm using pulumi wrapper github.com/pulumi/pulumi-postgresql
The text was updated successfully, but these errors were encountered: