Skip to content

Commit e7d705b

Browse files
Fixes from AWS Workshop testing (#428)
Closes # ## Description Changes to code-server and jetbrains modules that were not caught during initial unit-testing, that appear to be related to older versions of the modules or recent changes. ## Type of Change - [ ] New module - [x] Bug fix - [ ] Feature/enhancement - [ ] Documentation - [ ] Other ## Testing & Validation - [ ] Tests pass (`bun test`) - [ ] Code formatted (`bun run fmt`) - [x] Changes tested locally ## Related Issues None --------- Co-authored-by: DevelopmentCats <christofer@coder.com>
1 parent 898219b commit e7d705b

File tree

1 file changed

+3
-4
lines changed
  • registry/coder/templates/kubernetes-devcontainer

1 file changed

+3
-4
lines changed

registry/coder/templates/kubernetes-devcontainer/main.tf

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -426,15 +426,14 @@ module "code-server" {
426426
# This ensures that the latest non-breaking version of the module gets downloaded, you can also pin the module version to prevent breaking changes in production.
427427
version = "~> 1.0"
428428

429-
agent_id = coder_agent.main.id
430-
agent_name = "main"
431-
order = 1
429+
agent_id = coder_agent.main.id
430+
order = 1
432431
}
433432

434433
# See https://registry.coder.com/modules/coder/jetbrains
435434
module "jetbrains" {
436435
count = data.coder_workspace.me.start_count
437-
source = "registry.coder.com/modules/coder/jetbrains/coder"
436+
source = "registry.coder.com/coder/jetbrains/coder"
438437
version = "~> 1.0"
439438
agent_id = coder_agent.main.id
440439
agent_name = "main"

0 commit comments

Comments
 (0)