{"id":22558066,"url":"https://github.com/jd-apprentice/ansible-playbooks","last_synced_at":"2026-01-07T22:03:21.822Z","repository":{"id":199599428,"uuid":"703228274","full_name":"jd-apprentice/ansible-playbooks","owner":"jd-apprentice","description":"💖 A list of playbooks to use!","archived":false,"fork":false,"pushed_at":"2023-11-26T04:08:18.000Z","size":40,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-02T12:15:12.725Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Makefile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jd-apprentice.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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":"2023-10-10T20:57:35.000Z","updated_at":"2023-10-13T03:38:31.000Z","dependencies_parsed_at":"2023-10-11T04:53:59.400Z","dependency_job_id":"f49f6fe5-c035-4419-a06c-d006b8fa57bb","html_url":"https://github.com/jd-apprentice/ansible-playbooks","commit_stats":null,"previous_names":["jd-apprentice/ansible-playbooks"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jd-apprentice%2Fansible-playbooks","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jd-apprentice%2Fansible-playbooks/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jd-apprentice%2Fansible-playbooks/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jd-apprentice%2Fansible-playbooks/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jd-apprentice","download_url":"https://codeload.github.com/jd-apprentice/ansible-playbooks/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246020293,"owners_count":20710733,"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":[],"created_at":"2024-12-07T20:11:11.095Z","updated_at":"2026-01-07T22:03:21.766Z","avatar_url":"https://github.com/jd-apprentice.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# A list of curated playbooks for the Ansible Galaxy 📚\n\n\u003cp align=\"center\"\u003e\n  \u003cimg width=\"500\" height=\"500\" src=\"https://github.com/jd-apprentice/ansible-playbooks/assets/68082746/a2b49a94-5cfa-45e6-abc7-66774c39da6d\"\u003e\n\u003c/p\u003e\n\nFind playbooks for every usage you need, from basic task like installing a package to set up entire environments\n\n# How Ansible Works ❓\n\n![image](https://github.com/jd-apprentice/ansible-playbooks/assets/68082746/35c5970c-c583-46fb-b626-625bf8bdc53b)\n\n# Table of Contents\n\n1. [Requirements 📋](#requirements-)\n2. [File structure 📁](#file-structure-)\n3. [Usage 🚀](#usage-)\n4. [License 📰](#license-)\n5. [Contributing 🤝](#contributing-)\n\n## Requirements 📋\n\n- Ansible 2.15+\n- Python 3.10+\n- Make\n\n## Usage 🚀\n\nTo run playbooks with a prompt, use the following command:\n\n```bash\nmake run\n```\n\nYou will be prompted to select a playbook, module and inventory file.\n\nIf you want to run a playbook without being prompted, use the following command:\n\n```bash\nmake playbook playbook=\"playbook\" module=\"module\" inventory=\"inventory\"\n```\n\nHere you expecify the playbook, module and inventory file manually.\n\nTo run an entire suite of playbooks, use the following command:\n\n```bash\nmake playbook-suite playbook=\"playbook\" inventory=\"inventory\"\n```\n\n## File structure 📁\n\n```\n🌳 ansible-playbooks/\n┣ 📁 ansible/\n┃ ┣ 📁 files/\n┃ ┃ ┗ 📄 .gitkeep\n┃ ┣ 📁 inventory/\n┃ ┃ ┗ 📄 debian.ini\n┃ ┣ 📁 playbooks/\n┃ ┃ ┗ 📄 update-and-install.yml\n┃ ┣ 📁 roles/\n┃ ┃ ┣ 📁 certbot/\n┃ ┃ ┃ ┗ 📁 tasks/\n┃ ┃ ┃   ┗ 📄 install.yml\n┃ ┃ ┣ 📁 docker/\n┃ ┃ ┃ ┗ 📁 tasks/\n┃ ┃ ┃   ┣ 📄 docker-group.yml\n┃ ┃ ┃   ┗ 📄 install.yml\n┃ ┃ ┣ 📁 nginx/\n┃ ┃ ┃ ┗ 📁 tasks/\n┃ ┃ ┃   ┗ 📄 install.yml\n┃ ┃ ┗ 📁 system/\n┃ ┃   ┗ 📁 tasks/\n┃ ┃ ┃   ┣ 📄 debian-update.yml\n┃ ┃ ┃   ┗ 📄 ufw-web.yml\n┃ ┗ 📄 docker.yml\n┣ 📁 config/\n┃ ┗ 📄 aws.mk\n┣ 📁 docs/\n┃ ┗ 📄 EC2.md\n┣ 📁 scripts/\n┃ ┗ 📄 check_and_run.sh\n┣ 📄 CONTRIBUTING.md\n┣ 📄 LICENSE\n┣ 📄 Makefile\n┗ 📄 README.md\n```\n\n## Contributing 🤝\n\nYou can check the [CONTRIBUTING](CONTRIBUTING.md) file for more information.\n\n## License 📜\n\nThis project is licensed under the GNU GENERAL PUBLIC LICENSE - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjd-apprentice%2Fansible-playbooks","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjd-apprentice%2Fansible-playbooks","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjd-apprentice%2Fansible-playbooks/lists"}