Skip to content
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

Update postgresql_extension.html.markdown #337

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions website/docs/r/postgresql_extension.html.markdown
Original file line number Diff line number Diff line change
@@ -28,3 +28,9 @@ resource "postgresql_extension" "my_extension" {
* `database` - (Optional) Which database to create the extension on. Defaults to provider database.
* `drop_cascade` - (Optional) When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)
* `create_cascade` - (Optional) When true, will also create any extensions that this extension depends on that are not already installed. (Default: false)

## Import

PostgreSQL Extensions can be imported using the database name and the extension's resource name, e.g.

`terraform import postgresql_extension.uuid_ossp example-database.uuid-ossp`