You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In our PG database, there are a lot of views and it is hard to manage them. We're thinking if we can use Terraform to manage all the views in our PG database but after searching around I could not find something like postgresql_view resource.
Can we add suport for postgresql_view resource to the provider?
resource "postgresql_view" "my_pg_view" {
name = "my_pg_view"
schema = "my_pg_schema"
query = <<EOF
SELECT * FROM users WHERE age > 30;
EOF
}
Thanks!
The text was updated successfully, but these errors were encountered:
Hi,
In our PG database, there are a lot of views and it is hard to manage them. We're thinking if we can use Terraform to manage all the views in our PG database but after searching around I could not find something like
postgresql_view
resource.Can we add suport for
postgresql_view
resource to the provider?Thanks!
The text was updated successfully, but these errors were encountered: