https://github.com/buluma/ansible-collection-roles
My collection of roles commonly used
https://github.com/buluma/ansible-collection-roles
ansible collection configuration-management linux roles
Last synced: about 1 year ago
JSON representation
My collection of roles commonly used
- Host: GitHub
- URL: https://github.com/buluma/ansible-collection-roles
- Owner: buluma
- License: apache-2.0
- Created: 2022-01-31T09:13:44.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-03-26T02:31:18.000Z (over 2 years ago)
- Last Synced: 2025-04-04T20:25:32.510Z (over 1 year ago)
- Topics: ansible, collection, configuration-management, linux, roles
- Language: Jinja
- Homepage:
- Size: 70.1 MB
- Stars: 12
- Watchers: 2
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ansible Collection - buluma.roles
A collection of roles found on [galaxy.ansible.com/buluma](https://galaxy.ansible.com/buluma/).
## Using roles in this collection.
1. Install the collection:
```shell
ansible-galaxy collection install buluma.roles
```
You can also list a collection in `requirements.yml`:
```yaml
---
collections:
- name: buluma.roles
```
2. Include roles in your playbooks:
```yaml
---
- name: make a great machine
hosts: all
tasks:
- name: bootstrap
import_role:
name: buluma.roles.bootstrap
```