Skip to content

chore: swap dogfood to use modules #9870

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 26, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
fmt
  • Loading branch information
kylecarbs committed Sep 26, 2023
commit ef5f283cc673e11437cfcbee0b5a7642b8c330b4
10 changes: 5 additions & 5 deletions dogfood/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -224,20 +224,20 @@ resource "coder_agent" "dev" {
}

module "code-server" {
source = "https://registry.coder.com/modules/code-server"
source = "https://registry.coder.com/modules/code-server"
agent_id = coder_agent.dev.id
}

module "personalize" {
source = "https://registry.coder.com/modules/personalize"
source = "https://registry.coder.com/modules/personalize"
agent_id = coder_agent.dev.id
}

module "git-clone" {
source = "https://registry.coder.com/modules/git-clone"
source = "https://registry.coder.com/modules/git-clone"
agent_id = coder_agent.dev.id
repo = "https://github.com/coder/coder"
path = data.coder_parameter.repo_dir.value
repo = "https://github.com/coder/coder"
path = data.coder_parameter.repo_dir.value
}

resource "coder_app" "code-server" {
Expand Down