Skip to content
Open
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
8 changes: 8 additions & 0 deletions website/docs/r/postgresql_replication_slot.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,11 @@ resource "postgresql_replication_slot" "my_slot" {
* `name` - (Required) The name of the replication slot.
* `plugin` - (Required) Sets the output plugin.
* `database` - (Optional) Which database to create the replication slot on. Defaults to provider database.

## Import

Replication slot can be imported using this format:

```
$ terraform import postgresql_replication_slot.my_slot {{database_name}}.{{replication_slot_name}}
```