Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```