Skip to content

Commit

Permalink
chore(dogfood): bump module versions to latest (#13246)
Browse files Browse the repository at this point in the history
We should use the latest versions as these are the ones most customers will use.

We can automate this with @dependabot once we resolve coder/registry.coder.com#13
  • Loading branch information
matifali committed May 13, 2024
1 parent 4e73813 commit 7358c1b
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions dogfood/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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" {
Expand Down

0 comments on commit 7358c1b

Please sign in to comment.