Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/schu/ansible-roles


https://github.com/schu/ansible-roles

Last synced: 24 days ago
JSON representation

Awesome Lists containing this project

README

        

# ansible-roles

Various Ansible roles.

## GoAccess

Limitation: the role currently only supports Debian/Ubuntu systems.

## OAuth2 Proxy

https://oauth2-proxy.github.io/oauth2-proxy/

The OAuth2 Proxy role is written to install/support multiple instances of
OAuth2 Proxy. It can be used as follows:

```
# playbook.yml
---
- hosts: ...
roles:
- ...
- role: oauth-proxy
oauthproxy_name: example-one
oauthproxy_config: "{{ playbook_dir }}/files/www.example.com/oauth2-proxy-example-one.cfg"
- role: oauth-proxy
oauthproxy_name: example-two
oauthproxy_config: "{{ playbook_dir }}/files/www.example.com/oauth2-proxy-example-two.cfg"
vars:
...
```