From b514d988c848fd91aee0d4d570bb67464aac2692 Mon Sep 17 00:00:00 2001 From: Eric Paulsen Date: Thu, 10 Nov 2022 22:55:03 -0600 Subject: [PATCH 1/3] docs: deprecate name arg --- docs/ides/web-ides.md | 32 ++++++++++++++++-------------- docs/networking/port-forwarding.md | 12 +++++------ 2 files changed, 23 insertions(+), 21 deletions(-) diff --git a/docs/ides/web-ides.md b/docs/ides/web-ides.md index a35bb43f69ff5..4d8d1ab7af4c7 100644 --- a/docs/ides/web-ides.md +++ b/docs/ides/web-ides.md @@ -46,8 +46,8 @@ vim main.tf ```hcl resource "coder_agent" "main" { - arch = "amd64" - os = "linux" + arch = "amd64" + os = "linux" startup_script = < Date: Fri, 11 Nov 2022 15:15:37 +1000 Subject: [PATCH 2/3] whilst we are in here --- docs/ides/web-ides.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ides/web-ides.md b/docs/ides/web-ides.md index 4d8d1ab7af4c7..411989e458048 100644 --- a/docs/ides/web-ides.md +++ b/docs/ides/web-ides.md @@ -191,7 +191,7 @@ resource "coder_app" "rstudio" { agent_id = coder_agent.coder.id slug = "rstudio" display_name = "R Studio" - icon = "/icon/rstudio.svg" + icon = "https://upload.wikimedia.org/wikipedia/commons/d/d0/RStudio_logo_flat.svg" url = "http://localhost:8787" subdomain = true share = "owner" From 60ff05fb3f99e917baebde23139e3414ad8723dc Mon Sep 17 00:00:00 2001 From: Geoffrey Huntley Date: Fri, 11 Nov 2022 15:16:53 +1000 Subject: [PATCH 3/3] whilst we are in here --- docs/networking/port-forwarding.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/networking/port-forwarding.md b/docs/networking/port-forwarding.md index 23a32a0425f69..a5ae27a6e1671 100644 --- a/docs/networking/port-forwarding.md +++ b/docs/networking/port-forwarding.md @@ -66,7 +66,7 @@ Another way to port forward is to configure a `coder_app` resource in the worksp resource "coder_app" "node-react-app" { agent_id = coder_agent.dev.id slug = "node-react-app" - icon = "https://upload.wikimedia.org/wikipedia/commons/thumb/a/a7/React-icon.svg/2300px-React-icon.svg.png" + icon = "https://upload.wikimedia.org/wikipedia/commons/a/a7/React-icon.svg" url = "http://localhost:3000" subdomain = true share = "authenticated"