{"id":47944270,"url":"https://github.com/dataiku/dataiku-ansible-modules","last_synced_at":"2026-04-04T08:20:53.892Z","repository":{"id":149112076,"uuid":"140282259","full_name":"dataiku/dataiku-ansible-modules","owner":"dataiku","description":"A role packaging custom modules to administrate a Dataiku Data Science Studio intance","archived":false,"fork":false,"pushed_at":"2024-05-22T13:42:08.000Z","size":105,"stargazers_count":10,"open_issues_count":13,"forks_count":8,"subscribers_count":51,"default_branch":"master","last_synced_at":"2024-05-22T14:54:49.860Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://dataiku.com","language":"Python","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/dataiku.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2018-07-09T12:29:18.000Z","updated_at":"2024-05-22T13:42:12.000Z","dependencies_parsed_at":"2024-05-22T14:53:17.004Z","dependency_job_id":"24850801-ad04-4379-bf54-b91379c71b00","html_url":"https://github.com/dataiku/dataiku-ansible-modules","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dataiku/dataiku-ansible-modules","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dataiku%2Fdataiku-ansible-modules","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dataiku%2Fdataiku-ansible-modules/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dataiku%2Fdataiku-ansible-modules/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dataiku%2Fdataiku-ansible-modules/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dataiku","download_url":"https://codeload.github.com/dataiku/dataiku-ansible-modules/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dataiku%2Fdataiku-ansible-modules/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31392748,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T04:26:24.776Z","status":"ssl_error","status_checked_at":"2026-04-04T04:23:34.147Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2026-04-04T08:20:52.943Z","updated_at":"2026-04-04T08:20:53.870Z","avatar_url":"https://github.com/dataiku.png","language":"Python","readme":"Dataiku DSS modules (Archived)\n==============================\n\n:warning: This project is deprecated in favor of the [Dataiku Ansible Collection](https://github.com/dataiku/dataiku-ansible-collection)\n\nThis role packages custom modules to administrate Dataiku Data Science Studio platforms.\n\n\nInstallation\n------------\n\n## Basic\n\nIf the first directory of your roles path is writable, just use:\n\n ```\nansible-galaxy install git+https://github.com/dataiku/dataiku-api-client-python,release/8.0\nansible-galaxy install git+https://github.com/dataiku/dataiku-ansible-modules\n ```\n\nOr specify the path in which you want the role to be installed:\n\n ```\nansible-galaxy install git+https://github.com/dataiku/dataiku-api-client-python,release/8.0 --roles-path=/path/to/your/roles\nansible-galaxy install git+https://github.com/dataiku/dataiku-ansible-modules --roles-path=/path/to/your/roles\n ```\n\n## Force update\n\nIf the role already exists, `ansible-galaxy` wont update it unless you the `--force` flag.\n\n## Automation and versioning\n\nYou can use a `yaml` file with a content like this:\n\n```YAML\n---\n- src: git+https://github.com/dataiku/dataiku-api-client-python\n  name: dataiku-api-client-python\n  version: release/8.0\n- src: git+https://github.com/dataiku/dataiku-ansible-modules\n  name: dataiku-ansible-modules\n  version: master\n```\n\nThen install it like this:\n\n```\nansible-galaxy install -r /path/to/your/file.yml\n```\n\nThis allows you to:\n- Force a specific version\n- Rename the role on the fly\n\nBasic use\n---------\n\nTo have the modules available in your own roles, provided the role is in your role path, you can add the role as a dependency of your own. Reference it in the `meta/main.yml` file of your role:\n\n```YAML\n---\ndependencies:\n - dataiku-ansible-modules\n```\n\nAlternatively, a less ansiblish way is to add the `library` subdirectory of this role in the modules path.\n\nExample playbook\n----------------\n\nFind some more examples [here](doc/examples/).\n\n```YAML\n- hosts: servers\n  become: true\n  become_user: dataiku\n  roles:\n     - dataiku-ansible-modules # Makes the modules available\n  tasks:\n    - dss_get_credentials:\n        datadir: /home/dataiku/dss\n        api_key_name: myadminkey\n      register: dss_connection_info\n\n    - dss_group:\n        connect_to: \"{{dss_connection_info}}\"\n        name: datascienceguys\n\n    - dss_user:\n        connect_to: \"{{dss_connection_info}}\"\n        login: myadmin\n        password: theadminpasswordveryverystrongindeed\n        groups: [administrators,datascienceguys]\n\n    - dss_general_settings:\n        connect_to: \"{{dss_connection_info}}\"\n        settings:\n          ldapSettings:\n            enabled: true\n            url: ldap://ldap.internal.example.com/dc=example,dc=com\n            bindDN: uid=readonly,ou=users,dc=example,dc=com\n            bindPassword: theserviceaccountpassword\n            useTls: true\n            autoImportUsers: true\n            userFilter: (\u0026(objectClass=posixAccount)(uid={USERNAME}))\n            defaultUserProfile: READER\n            displayNameAttribute: gecos\n            emailAttribute: mail\n            enableGroups: true\n            groupFilter: (\u0026(objectClass=posixGroup)(memberUid={USERDN}))\n            groupNameAttribute: cn\n            groupProfiles: []\n            authorizedGroups: dss-users\n```\n\nLicense\n-------\n\nApache 2.0\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdataiku%2Fdataiku-ansible-modules","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdataiku%2Fdataiku-ansible-modules","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdataiku%2Fdataiku-ansible-modules/lists"}