Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 4 days 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 (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-26T02:31:18.000Z (8 months ago)
- Last Synced: 2024-05-01T12:57:54.962Z (7 months ago)
- Topics: ansible, collection, configuration-management, linux, roles
- Language: Jinja
- Homepage:
- Size: 70.1 MB
- Stars: 11
- 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
```