From 674c4c04bfa51aa32c109f690caa40c3a61e7ede Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Sat, 11 May 2024 11:22:46 +0300 Subject: [PATCH] chore(dogfood): bump module version to latest We should use the latest versions as these are the ones most customers will use. We can automate this with @dependabot once we resolve https://github.com/coder/registry.coder.com/issues/13 --- dogfood/main.tf | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/dogfood/main.tf b/dogfood/main.tf index 794c662fab89b..1656a223ae2a3 100644 --- a/dogfood/main.tf +++ b/dogfood/main.tf @@ -105,13 +105,13 @@ module "slackme" { module "dotfiles" { source = "registry.coder.com/modules/dotfiles/coder" - version = "1.0.2" + version = "1.0.14" agent_id = coder_agent.dev.id } module "git-clone" { source = "registry.coder.com/modules/git-clone/coder" - version = "1.0.2" + version = "1.0.12" agent_id = coder_agent.dev.id url = "https://github.com/coder/coder" base_dir = local.repo_base_dir @@ -124,20 +124,22 @@ module "personalize" { } module "code-server" { - source = "registry.coder.com/modules/code-server/coder" - version = "1.0.8" - agent_id = coder_agent.dev.id - folder = local.repo_dir + source = "registry.coder.com/modules/code-server/coder" + version = "1.0.14" + agent_id = coder_agent.dev.id + folder = local.repo_dir + auto_install_extensions = true } module "jetbrains_gateway" { source = "registry.coder.com/modules/jetbrains-gateway/coder" - version = "1.0.9" + version = "1.0.13" agent_id = coder_agent.dev.id agent_name = "dev" folder = local.repo_dir jetbrains_ides = ["GO", "WS"] default = "GO" + latest = true } module "filebrowser" {