|
18 | 18 | - If no password item is found, a new item is created. Useful for automation. |
19 | 19 | - If you do not specify a name or Bitwarden ID, it searches using the name/title. |
20 | 20 | - If there is an existing Bitwarden item that differs from the given parameters, the item is updated, and the updated item is returned. |
21 | | - - If a search returns multiple entries, this lookup plugin throws an error, since it cannot decide which one to use. |
22 | | - - On success, this lookup plugin returns the complete Bitwarden item object. |
| 21 | + - If a search returns multiple entries, this module throws an error, since it cannot decide which one to use. |
| 22 | + - On success, this module returns the complete Bitwarden item object. |
23 | 23 | - If you don't specify a name/title for a password item, a name/title will be created automatically, using C(hostname - purpose) (for example "C(dbserver - MariaDB)") or just C(hostname) (for example "C(dbserver)", depending on what is provided). |
24 | 24 |
|
25 | 25 | notes: |
@@ -288,7 +288,7 @@ def run_module(): |
288 | 288 | module_args = dict( |
289 | 289 | attachments=dict(type='list', required=False, default=[]), |
290 | 290 | collection_id=dict(type='str', required=False, default=None), |
291 | | - folder_id=dict(type='list', required=False, default=None), |
| 291 | + folder_id=dict(type='str', required=False, default=None), |
292 | 292 | hostname=dict(type='str', required=False, default=None), |
293 | 293 | id=dict(type='str', required=False, default=None), |
294 | 294 | name=dict(type='str', required=False, default=None), |
|
0 commit comments