Skip to content

Commit

Permalink
postgresql_publication.markdown - table ordering (#265)
Browse files Browse the repository at this point in the history
Co-authored-by: Cyril Gaudin <[email protected]>
  • Loading branch information
RoseateSpoonbill and cyrilgdn authored Jul 16, 2023
1 parent 2de8ce5 commit fea83f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/docs/r/postgresql_publication.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ resource "postgresql_publication" "publication" {

- `name` - (Required) The name of the publication.
- `database` - (Optional) Which database to create the publication on. Defaults to provider database.
- `tables` - (Optional) Which tables add to the publication. By defaults no tables added. Format of table is `<schema_name>.<table_name>`. If `<schema_name>` is not specified - default database schema will be used.
- `tables` - (Optional) Which tables add to the publication. By defaults no tables added. Format of table is `<schema_name>.<table_name>`. If `<schema_name>` is not specified - default database schema will be used. Table string must be listed in alphabetical order.
- `all_tables` - (Optional) Should be ALL TABLES added to the publication. Defaults to 'false'
- `owner` - (Optional) Who owns the publication. Defaults to provider user.
- `drop_cascade` - (Optional) Should all subsequent resources of the publication be dropped. Defaults to 'false'
Expand Down

0 comments on commit fea83f3

Please sign in to comment.