Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Appsilon/ansible-rstudio-workbench
Set up (the latest version of) RStudio Workbench in Debian-like systems
https://github.com/Appsilon/ansible-rstudio-workbench
ansible
Last synced: 3 months ago
JSON representation
Set up (the latest version of) RStudio Workbench in Debian-like systems
- Host: GitHub
- URL: https://github.com/Appsilon/ansible-rstudio-workbench
- Owner: Appsilon
- License: mit
- Created: 2021-10-11T13:59:58.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-27T10:48:58.000Z (8 months ago)
- Last Synced: 2024-07-29T19:26:38.622Z (3 months ago)
- Topics: ansible
- Language: Jinja
- Homepage:
- Size: 75.2 KB
- Stars: 6
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - Appsilon/ansible-rstudio-workbench - Set up (the latest version of) RStudio Workbench in Debian-like systems (Jinja)
README
# Ansible Role: rstudio-workbench
[![CI](https://github.com/Appsilon/ansible-rstudio-workbench/workflows/CI/badge.svg)](https://github.com/Appsilon/ansible-rstudio-workbench/actions/workflows/ci.yml)
[![Ansible Galaxy](https://img.shields.io/badge/ansible--galaxy-appsilon.rstudio_workbench-blue.svg)](https://galaxy.ansible.com/appsilon/rstudio_workbench/)Set up (the latest version of) [RStudio Workbench](https://www.rstudio.com/products/workbench/) in Debian-like systems.
## Requirements
* `curl` (will be installed)
* `r-base` (will not be installed)## Role Variables
* `rstudio_workbench_version` [default: `2023.12.0`]: Version to install.
* `rstudio_workbench_install` [default: `[]`]: Additional packages to install (e.g. `r-base`).
* `rstudio_workbench_www_port` [default: `8787`]: The port you want RStudio Workbench to listen on>
* `rstudio_workbench_health_check_enabled` [default: 0]: Decision if you want to activate `http:///health-check` endpoint.
* `rstudio_workbench_rserver_config`: If specified (map), will add key=value records to `rserver.conf`.
* `rstudio_workbench_rsession_config`: If specified (map), will add key=value records to `rsession.conf`.
* `rstudio_workbench_database_config`: If specified (map), will add key=value records to `database.conf`.
* `rstudio_workbench_openid_config`: If specified (map), will add key=value records to `openid-client-secret`.
* `rstudio_workbench_secure_cookie_key`: If specified (value), will create `secure-cookie-key` file with content of this variable.
* `rstudio_workbench_env_vars`: If specified (map), will add key=value records to `openid-client-secret`.
* `rstudio_workbench_load_balancer_config`: If specified (map), will add key=value records to `load-balancer`.
* `rstudio_workbench_license`: If specified, RStudio Workbench will attempt to activate the supplied license key.For the rest of the default variables, see
[./defaults/main.yml](./defaults/main.yml).## Dependencies
None
## Example
```yaml
---
- hosts: all
roles:
- rstudio-workbench
```## License
MIT
## Author Information
Damian Budelewski. Inspired by [ansible-rstudio-server](https://github.com/Oefenweb/ansible-rstudio-server).