Skip to content

Commit 069c2dd

Browse files
committed
fmt
1 parent 8158580 commit 069c2dd

File tree

1 file changed

+3
-3
lines changed
  • registry/coder/modules/rstudio-server

1 file changed

+3
-3
lines changed

registry/coder/modules/rstudio-server/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ variable "rstudio_password" {
5050
variable "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

5656
variable "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
}

0 commit comments

Comments
 (0)