{"id":29702581,"url":"https://github.com/devgateway/ansible-module-openldap-database","last_synced_at":"2026-05-14T21:04:53.911Z","repository":{"id":78413062,"uuid":"128258874","full_name":"devgateway/ansible-module-openldap-database","owner":"devgateway","description":"OpenLDAP database configuration module for Ansible","archived":false,"fork":false,"pushed_at":"2018-04-18T14:55:59.000Z","size":49,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-10-28T08:05:35.918Z","etag":null,"topics":["ansible","ansible-modules","ldap","openldap","openldap-server","openldap-slapd","python","python2"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devgateway.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2018-04-05T20:11:33.000Z","updated_at":"2018-04-18T14:55:23.000Z","dependencies_parsed_at":"2023-03-20T18:05:26.140Z","dependency_job_id":null,"html_url":"https://github.com/devgateway/ansible-module-openldap-database","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/devgateway/ansible-module-openldap-database","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgateway%2Fansible-module-openldap-database","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgateway%2Fansible-module-openldap-database/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgateway%2Fansible-module-openldap-database/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgateway%2Fansible-module-openldap-database/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devgateway","download_url":"https://codeload.github.com/devgateway/ansible-module-openldap-database/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgateway%2Fansible-module-openldap-database/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33043251,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"online","status_checked_at":"2026-05-14T02:00:06.663Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ansible","ansible-modules","ldap","openldap","openldap-server","openldap-slapd","python","python2"],"created_at":"2025-07-23T12:39:41.712Z","updated_at":"2026-05-14T21:04:53.905Z","avatar_url":"https://github.com/devgateway.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# openldap\\_database\n\nA module for Ansible to add or remove OpenLDAP databases.\n\n## Description\n\nCreate, configure, or delete OpenLDAP databases. This module does not manage database content.\nDelete feature is not officially supported by OpenLDAP, thus provided \"as is\". Check mode is fully\nsupported.\n\n## Options\n\n### `access`\n\nA list of access rules. Each rule is a dictionary.\n\nDictionary members:\n\n- `to`: Selector for entries and/or attributes to which ACL applies.\n\n- `by`: List of entities being granted access, and their access level (as a string).\n\n### `backend`\n\nDatabase type. You cannot change the backend after the database has been created.\n\nDefault: `mdb`\n\nChoices: `bdb`, `hdb`, `mdb`\n\n### `config`\n\nDictionary of other database-specific options, e.g. `olcDbMaxSize`. Keys must be valid attribute\nnames, typically starting with `olc`. Values must be either scalars (to be converted to strings),\nor lists of strings.\n\n### `directory`\n\nDirectory where database files will be stored. This directory must exist and be writable by\nOpenLDAP daemon.\n\nRequired if `state=present`.\n\n### `indexes`\n\nDictionary of indexes; all other indexes will be deleted. Keys are comma-separated attribute names.\nValues are index types, e.g. `pres` or `eq`.\n\n### `limits`\n\nList of dictionaries, with only one member each. The key is subject selector. The value is a\ndictionary of limit types and their values.\n\n### `read_only`\n\nWhether to put the database in read-only mode.\n\nDefault: no\n\n### `root_dn`\n\nDN of the database admin which will not be subject to access control.\n\n### `root_pw`\n\nPassword for the *root_dn* account.\n\n### `state`\n\nUse `present` to create or update the DB, or `absent` to delete. Delete operation is not officially\nsupported by OpenLDAP.\n\nDefault: present\n\nChoices: absent, present\n\n### `suffix`\n\nDatabase suffix, e.g. `dc=example,dc=org`. This option is required.\n\n### `syncrepl`\n\nList of dictionaries of syncrepl/olcSyncrepl parameters\n\n### `updateref`\n\nURL to return to clients which submit update requests upon the replica.\n\n## Notes\n\n- After deletion, you MUST restart OpenLDAP daemon, or it will keep serving ghost data.\n\n- For additional info, see [OpenLDAP Admin's Guide](http://www.openldap.org/doc/admin24/).\n\n## Requirements\n\n- python-ldap\n\n## Copyright\n\n2018, Development Gateway, GPL v.3+\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevgateway%2Fansible-module-openldap-database","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevgateway%2Fansible-module-openldap-database","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevgateway%2Fansible-module-openldap-database/lists"}