Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrlesmithjr/ansible-guacamole
Ansible role to install/configure Guacamole
https://github.com/mrlesmithjr/ansible-guacamole
ansible ansible-role
Last synced: 2 months ago
JSON representation
Ansible role to install/configure Guacamole
- Host: GitHub
- URL: https://github.com/mrlesmithjr/ansible-guacamole
- Owner: mrlesmithjr
- License: mit
- Created: 2017-11-28T16:49:30.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-09-28T05:40:17.000Z (3 months ago)
- Last Synced: 2024-10-20T01:16:47.367Z (3 months ago)
- Topics: ansible, ansible-role
- Language: Jinja
- Size: 219 KB
- Stars: 19
- Watchers: 4
- Forks: 15
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# ansible-guacamole
Ansible role to install/configure Guacamole
## Build Status
### GitHub Actions
![Molecule Test](https://github.com/mrlesmithjr/ansible-guacamole/workflows/Molecule%20Test/badge.svg)
## Requirements
For any required Ansible roles, review:
[requirements.yml](requirements.yml)## Role Variables
[defaults/main.yml](defaults/main.yml)
### TOTP Configuration
To enable Two factor authentification, create a variable `guacamole_totp`:
```
guacamole_totp:
issuer: 'guacamole.exemple.com'
period: 60
```### OpenID Configuration
To enable OpenID authentification, create :
```
guacamole_openid_auth: true
guacamole_openid:
authorization-endpoint: https://idp.xxx.xx/realms/yyy/protocol/openid-connect/auth
jwks-endpoint: https://idp.xxx.xx/realms/yyy/protocol/openid-connect/certs
issuer: https://idp.xxx.xx/realms/yyy
client-id: remote
redirect-uri: https://remote.xxx.xx/guacamole
```### guacd Configuration
guacd is the native server-side proxy used by the Apache Guacamole web application. If you wish to deploy Guacamole, or an application using the Guacamole core APIs, you will need a copy of guacd running.
guacd is installed by default. To disable it, set `guacd_config.install` to `false`:
```
guacd_config:
install: false
```## Dependencies
## Example Playbook
[playbook.yml](playbook.yml)
## License
MIT
## Author Information
Larry Smith Jr.
- [@mrlesmithjr](https://twitter.com/mrlesmithjr)
- [[email protected]](mailto:[email protected])
- [https://everythingshouldbevirtual.com](https://everythingshouldbevirtual.com)> NOTE: Repo has been created/updated using [https://github.com/mrlesmithjr/cookiecutter-ansible-role](https://github.com/mrlesmithjr/cookiecutter-ansible-role) as a template.