Skip to content

Commit

Permalink
📚 improve mongo docs and param descriptions (#4870)
Browse files Browse the repository at this point in the history
  • Loading branch information
sherifnada authored Jul 20, 2021
1 parent 9c66261 commit 05bd157
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"sourceDefinitionId": "487b930d-7f6a-43ce-8bac-46e6b2de0a55",
"name": "Mongo DB",
"dockerRepository": "airbyte/source-mongodb",
"dockerImageTag": "0.3.2",
"dockerImageTag": "0.3.3",
"documentationUrl": "https://hub.docker.com/r/airbyte/source-mongodb",
"icon": "mongodb.svg"
}
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@
- sourceDefinitionId: 487b930d-7f6a-43ce-8bac-46e6b2de0a55
name: Mongo DB
dockerRepository: airbyte/source-mongodb
dockerImageTag: 0.3.2
dockerImageTag: 0.3.3
documentationUrl: https://hub.docker.com/r/airbyte/source-mongodb
icon: mongodb.svg
- sourceDefinitionId: d19ae824-e289-4b14-995a-0632eb46d246
Expand Down
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-mongodb/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ ENV AIRBYTE_ENTRYPOINT "ruby /airbyte/source.rb"
ENTRYPOINT ["ruby", "/airbyte/source.rb"]

LABEL io.airbyte.name=airbyte/source-mongodb
LABEL io.airbyte.version=0.3.2
LABEL io.airbyte.version=0.3.3
4 changes: 2 additions & 2 deletions airbyte-integrations/connectors/source-mongodb/lib/spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@
"auth_source": {
"title": "Authentication source",
"type": "string",
"description": "Authentication source where user information is stored",
"description": "Authentication source where user information is stored. See <a href=\"* [Authentication Source](https://docs.mongodb.com/manual/reference/connection-string/#mongodb-urioption-urioption.authSource)\"> the Mongo docs</a> for more info.",
"default": "admin",
"examples": ["admin"],
"order": 5
},
"replica_set": {
"title": "Replica Set",
"type": "string",
"description": "The name of the set to filter servers by, when connecting to a replica set (Under this condition, the 'TLS connection' value automatically becomes 'true')",
"description": "The name of the set to filter servers by, when connecting to a replica set (Under this condition, the 'TLS connection' value automatically becomes 'true'). See <a href=\"https://docs.mongodb.com/manual/reference/connection-string/#mongodb-urioption-urioption.replicaSet\"> the Mongo docs </a> for more info.",
"default": "",
"order": 6
},
Expand Down
16 changes: 16 additions & 0 deletions docs/integrations/sources/mongodb.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,3 +84,19 @@ Make sure that MongoDB is accessible from external servers. Specific commands wi
Your `READ_ONLY_USER` should now be ready for use with Airbyte.
#### Possible configuration Parameters
* [Authentication Source](https://docs.mongodb.com/manual/reference/connection-string/#mongodb-urioption-urioption.authSource)
* Host: URL of the database
* Port: Port to use for connecting to the database
* User: username to use when connecting
* Password: used to authenticate the user
* [Replica Set](https://docs.mongodb.com/manual/reference/connection-string/#mongodb-urioption-urioption.replicaSet)
* Whether to enable SSL
## Changelog
| Version | Date | Pull Request | Subject |
| :------ | :-------- | :----- | :------ |
| 0.2.3 | 2021-07-20 | [4669](https://github.com/airbytehq/airbyte/pull/4669) | Subscriptions Stream now returns all kinds of subscriptions (including expired and canceled)|

0 comments on commit 05bd157

Please sign in to comment.