{"id":15517526,"url":"https://github.com/bodgit/puppet-sssd","last_synced_at":"2025-04-15T21:25:11.745Z","repository":{"id":8548835,"uuid":"57168317","full_name":"bodgit/puppet-sssd","owner":"bodgit","description":"Puppet Module for managing SSSD","archived":false,"fork":false,"pushed_at":"2024-08-19T13:02:35.000Z","size":312,"stargazers_count":2,"open_issues_count":6,"forks_count":9,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-29T01:34:10.792Z","etag":null,"topics":["ldap","puppet","sssd"],"latest_commit_sha":null,"homepage":"https://forge.puppet.com/bodgit/sssd","language":"Puppet","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bodgit.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2016-04-26T23:17:22.000Z","updated_at":"2023-08-21T13:06:50.000Z","dependencies_parsed_at":"2024-11-01T12:03:48.505Z","dependency_job_id":"e9182478-0503-4adf-9456-0be4030d1884","html_url":"https://github.com/bodgit/puppet-sssd","commit_stats":{"total_commits":87,"total_committers":3,"mean_commits":29.0,"dds":0.04597701149425293,"last_synced_commit":"6bae24f72223f42592d81f01248656f55fb345b5"},"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bodgit%2Fpuppet-sssd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bodgit%2Fpuppet-sssd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bodgit%2Fpuppet-sssd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bodgit%2Fpuppet-sssd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bodgit","download_url":"https://codeload.github.com/bodgit/puppet-sssd/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248923724,"owners_count":21183953,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["ldap","puppet","sssd"],"created_at":"2024-10-02T10:13:41.689Z","updated_at":"2025-04-15T21:25:11.724Z","avatar_url":"https://github.com/bodgit.png","language":"Puppet","readme":"# sssd\n\n[![Build Status](https://img.shields.io/github/workflow/status/bodgit/puppet-sssd/Test)](https://github.com/bodgit/puppet-sssd/actions?query=workflow%3ATest)\n[![Codecov](https://img.shields.io/codecov/c/github/bodgit/puppet-sssd)](https://codecov.io/gh/bodgit/puppet-sssd)\n[![Puppet Forge version](http://img.shields.io/puppetforge/v/bodgit/sssd)](https://forge.puppetlabs.com/bodgit/sssd)\n[![Puppet Forge downloads](https://img.shields.io/puppetforge/dt/bodgit/sssd)](https://forge.puppetlabs.com/bodgit/sssd)\n[![Puppet Forge - PDK version](https://img.shields.io/puppetforge/pdk-version/bodgit/sssd)](https://forge.puppetlabs.com/bodgit/sssd)\n\n#### Table of Contents\n\n1. [Description](#description)\n2. [Setup - The basics of getting started with sssd](#setup)\n    * [Beginning with sssd](#beginning-with-sssd)\n3. [Usage - Configuration options and additional functionality](#usage)\n4. [Reference - An under-the-hood peek at what the module is doing and how](#reference)\n5. [Limitations - OS compatibility, etc.](#limitations)\n6. [Development - Guide for contributing to the module](#development)\n\n## Description\n\nThis module will install the SSSD packages, configure any services and domains,\nand optionally configure the D-Bus system service.\n\nCentOS, RHEL, Scientific and Oracle Enterprise Linux is supported using Puppet\n5 or later.\n\n## Setup\n\n### Beginning with sssd\n\nYou need to configure at least one domain for SSSD to start up so the bare\nminimum would be:\n\n```puppet\ninclude sssd\nsssd::domain { 'example.com':\n  id_provider =\u003e 'ldap',\n  ...\n}\n```\n\n## Usage\n\nConfigure SSSD to use LDAP for NSS:\n\n```puppet\nclass { 'sssd':\n  domains  =\u003e {\n    'example.com' =\u003e {\n      'id_provider'           =\u003e 'ldap',\n      'ldap_schema'           =\u003e 'rfc2307',\n      'ldap_uri'              =\u003e ['ldap://192.0.2.1'],\n      'ldap_search_base'      =\u003e 'dc=example,dc=com',\n      'ldap_tls_reqcert'      =\u003e 'never',\n      'ldap_id_use_start_tls' =\u003e false,\n      'ldap_default_bind_dn'  =\u003e 'cn=Manager,dc=example,dc=com',\n      'ldap_default_authtok'  =\u003e 'secret',\n    },\n  },\n  services =\u003e {\n    'nss' =\u003e {},\n  },\n}\n\nclass { 'nsswitch':\n  passwd =\u003e ['files', 'sss'],\n  shadow =\u003e ['files', 'sss'],\n  group  =\u003e ['files', 'sss'],\n}\n\nClass['sssd'] -\u003e Class['nsswitch']\n```\n\nExtend the above example to also make the SSSD data available over D-Bus:\n\n```puppet\ninclude dbus\ninclude sssd\nsssd::service { 'nss': }\nsssd::domain { 'example.com':\n  id_provider           =\u003e 'ldap',\n  ldap_schema           =\u003e 'rfc2307',\n  ldap_uri              =\u003e ['ldap://192.0.2.1'],\n  ldap_search_base      =\u003e 'dc=example,dc=com',\n  ldap_tls_reqcert      =\u003e 'never',\n  ldap_id_use_start_tls =\u003e false,\n  ldap_default_bind_dn  =\u003e 'cn=Manager,dc=example,dc=com',\n  ldap_default_authtok  =\u003e 'secret',\n}\ninclude sssd::dbus\n\nclass { 'nsswitch':\n  passwd =\u003e ['files', 'sss'],\n  shadow =\u003e ['files', 'sss'],\n  group  =\u003e ['files', 'sss'],\n}\n\nClass['sssd'] -\u003e Class['nsswitch']\n```\n\n## Reference\n\nThe reference documentation is generated with\n[puppet-strings](https://github.com/puppetlabs/puppet-strings) and the latest\nversion of the documentation is hosted at\n[https://bodgit.github.io/puppet-sssd/](https://bodgit.github.io/puppet-sssd/)\nand available also in the [REFERENCE.md](https://github.com/bodgit/puppet-sssd/blob/main/REFERENCE.md).\n\n## Limitations\n\nThis module takes the (somewhat laborious) approach of creating parameters for\neach `sssd.conf` setting rather than just pass in a large hash of settings\nwhich should result in more control.\n\nAny setting that accepts the boolean `TRUE`/`FALSE` values is mapped to a\nnative Puppet boolean type. Any multi-valued setting accepts an array of\nvalues.\n\nCurrently almost all parameters are optional, the only mandatory parameter is\nthat of the identity provider (`id_provider`) for the `sssd::domain` defined\ntype. This may change in the future if the logic becomes more obvious.\n\nThis module has been built on and tested against Puppet 5 and higher.\n\nThe module has been tested on:\n\n* Red Hat/CentOS Enterprise Linux 6/7\n\n## Development\n\nThe module relies on [PDK](https://puppet.com/docs/pdk/1.x/pdk.html) and has\nboth [rspec-puppet](http://rspec-puppet.com) and\n[beaker-rspec](https://github.com/puppetlabs/beaker-rspec) tests. Run them\nwith:\n\n```\n$ bundle exec rake spec\n$ PUPPET_INSTALL_TYPE=agent PUPPET_INSTALL_VERSION=x.y.z bundle exec rake beaker:\u003cnodeset\u003e\n```\n\nPlease log issues or pull requests at\n[github](https://github.com/bodgit/puppet-sssd).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbodgit%2Fpuppet-sssd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbodgit%2Fpuppet-sssd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbodgit%2Fpuppet-sssd/lists"}