Skip to content

fix: update reference to agent.dev in examples and docs #3198

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 5 commits into from
Jul 26, 2022
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
Next Next commit
chore: update default agent ID in documentation
  • Loading branch information
johnstcn committed Jul 26, 2022
commit 613fd3cf4ca07c1c0f513bbf35f66fd7ac99cdf8
4 changes: 2 additions & 2 deletions docs/ides/configuring-web-ides.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ be used as a Coder application. For example:
```hcl
# Give template users the portainer.io web UI
resource "coder_app" "portainer" {
agent_id = coder_agent.dev.id
agent_id = coder_agent.main.id
name = "portainer"
icon = "https://simpleicons.org/icons/portainer.svg"
url = "http://localhost:8000"
Expand Down Expand Up @@ -69,7 +69,7 @@ You'll also need to specify a `coder_app` resource related to the agent. This is

```hcl
resource "coder_app" "code-server" {
agent_id = coder_agent.dev.id
agent_id = coder_agent.main.id
name = "code-server"
url = "http://localhost:13337/?folder=/home/coder"
icon = "/icon/code.svg"
Expand Down