Skip to content

Commit f43eb0e

Browse files
authored
fix: minor fixes to templates docs (coder#3117)
1 parent 1140e29 commit f43eb0e

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

docs/templates.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -107,13 +107,13 @@ Terraform. There are two types of parameters:
107107
values are often personalization settings such as "preferred region"
108108
or "workspace image".
109109

110-
The template sample below uses *admin and user parameters* to allow developers to
110+
The template sample below uses _admin and user parameters_ to allow developers to
111111
create workspaces from any image as long as it is in the proper registry:
112112

113113
```hcl
114114
variable "image_registry_url" {
115-
description = "The image registry developers can sele"
116-
default = "artifactory1.organization.com`
115+
description = "The image registry developers can select"
116+
default = "artifactory1.organization.com"
117117
sensitive = true # admin (template-wide) parameter
118118
}
119119
@@ -188,7 +188,6 @@ resource "kubernetes_pod" "podName" {
188188
}
189189
```
190190

191-
192191
#### Delete workspaces
193192

194193
When a workspace is deleted, the Coder server essentially runs a
@@ -256,8 +255,8 @@ practices:
256255
- Ensure the resource has `curl` installed
257256
- Ensure the resource can reach your Coder URL
258257
- Manually connect to the resource (e.g., `docker exec` or AWS console)
259-
- The Coder agent logs are typically stored in (`/var/log/coder-agent.log`)
260-
258+
- The Coder agent logs are typically stored in `/var/log/coder-agent.log`
259+
- The Coder agent startup script logs are typically stored in `/var/log/coder-startup-script.log`
261260

262261
## Change Management
263262

0 commit comments

Comments
 (0)