-
Notifications
You must be signed in to change notification settings - Fork 9.7k
New issue
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
provider/postgresql: Create provider for postgresql extensions #9210
Conversation
bc88164
to
b9c61e9
Compare
cc @sean- for review |
b9c61e9
to
2ad56de
Compare
This change adds support for installing postgresql extensions on a postgresql server.
2ad56de
to
d073a90
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @samdunne
Thanks for the work here. I think this needs a few changes:
- It needs added to provider.go or it can't be used
- We need to add the documentation link to the postgres.erb file (for the sidebar)
- Why is there no Read func included? How can we guarantee that the operation has been a success?
Paul
|
||
d.SetId(extensionName) | ||
|
||
return resourcePostgreSQLRoleRead(d, meta) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why does it call the SQLRoleRead func?
ping @samdunne |
Oops. This fell through the cracks a bit. Will rectify and commit today. Apologies @stack72 |
pinging in again LOL :) |
@stack72 sorry my head is like a sieve the last week. Added changes there. Pretty sure that's it |
Hi @samdunne This LGTM now :) I had to make 1 small change (to fix a test) but they are green now
|
\o/ thanks @stack72 |
@samdunne Have you had a chance to poke at the extension updates that landed in 0.8? |
@sean- I haven't had a chance yet. Will give it a try this evening :) |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
This change adds support for installing postgresql extensions on a
postgresql server.