File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
registry/coder/modules/rstudio-server Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ variable "rstudio_password" {
5050variable "project_path" {
5151 type = string
5252 description = " The path to RStudio project, it will be mounted in the container."
53- default = null
53+ default = null
5454}
5555
5656variable "port" {
@@ -97,15 +97,15 @@ resource "coder_script" "rstudio-server" {
9797 display_name = " rstudio-server"
9898 icon = " /icon/rstudio.svg"
9999 script = templatefile (" ${ path . module } /run.sh" , {
100- DOCKER_HOST: var.docker_socket,
100+ DOCKER_HOST : var.docker_socket,
101101 SERVER_VERSION : var.rstudio_server_version,
102102 DISABLE_AUTH : var.disable_auth,
103103 RSTUDIO_USER : var.rstudio_user,
104104 RSTUDIO_PASSWORD : var.rstudio_password,
105105 PROJECT_PATH : var.project_path,
106106 PORT : var.port,
107107 ENABLE_RENV : var.enable_renv,
108- RENV_CACHE_VOLUME: var.renv_cache_volume,
108+ RENV_CACHE_VOLUME : var.renv_cache_volume,
109109 })
110110 run_on_start = true
111111}
You can’t perform that action at this time.
0 commit comments