Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
feat: promote modules
  • Loading branch information
phorcys420 committed Nov 16, 2024
commit e58e114af474777284f76904aee300101c41e3f5
49 changes: 30 additions & 19 deletions examples/templates/docker/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,7 @@ resource "coder_agent" "main" {
touch ~/.init_done
fi

# Install the latest code-server.
# Append "--version x.x.x" to install a specific version of code-server.
curl -fsSL https://code-server.dev/install.sh | sh -s -- --method=standalone --prefix=/tmp/code-server

# Start code-server in the background.
/tmp/code-server/bin/code-server --auth none --port 13337 >/tmp/code-server.log 2>&1 &
# Add any commands that should be executed at workspace startup (e.g install requirements, start a program, etc) here
EOT

# These environment variables allow you to make Git commits right away after creating a
Expand Down Expand Up @@ -126,20 +121,36 @@ resource "coder_agent" "main" {
}
}

resource "coder_app" "code-server" {
agent_id = coder_agent.main.id
slug = "code-server"
display_name = "code-server"
url = "http://localhost:13337/?folder=/home/${local.username}"
icon = "/icon/code.svg"
subdomain = false
share = "owner"
# See https://registry.coder.com/modules/code-server
module "code-server" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/code-server/coder"

healthcheck {
url = "http://localhost:13337/healthz"
interval = 5
threshold = 6
}
# This ensures that the latest version of the module gets downloaded, you can also pin the module version to prevent breaking changes in production.
version = ">= 1.0.0"

agent_id = coder_agent.main.id
order = 1
}

# See https://registry.coder.com/modules/jetbrains-gateway
module "jetbrains_gateway" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/jetbrains-gateway/coder"

# JetBrains IDEs to make available for the user to select
jetbrains_ides = ["IU", "PY", "WS", "PS", "RD", "CL", "GO", "RM"]
default = "IU"

# Default folder to open when starting a JetBrains IDE
folder = "/home/coder"

# This ensures that the latest version of the module gets downloaded, you can also pin the module version to prevent breaking changes in production.
version = ">= 1.0.0"

agent_id = coder_agent.main.id
agent_name = "main"
order = 2
}

resource "docker_volume" "home_volume" {
Expand Down
Loading