Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/schu/ansible-roles
https://github.com/schu/ansible-roles
Last synced: 24 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/schu/ansible-roles
- Owner: schu
- Created: 2021-03-26T23:16:20.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-07-15T15:49:48.000Z (4 months ago)
- Last Synced: 2024-07-15T19:13:36.058Z (4 months ago)
- Size: 20.5 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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:
...
```