Skip to content

Latest commit

 

History

History
73 lines (47 loc) · 1.95 KB

README.md

File metadata and controls

73 lines (47 loc) · 1.95 KB

ansible-guacamole

Ansible role to install/configure Guacamole

Build Status

GitHub Actions

Molecule Test

Requirements

For any required Ansible roles, review: requirements.yml

Role Variables

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

License

MIT

Author Information

Larry Smith Jr.

Buy Me A Coffee

NOTE: Repo has been created/updated using https://github.com/mrlesmithjr/cookiecutter-ansible-role as a template.