File tree 1 file changed +5
-6
lines changed
1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -107,13 +107,13 @@ Terraform. There are two types of parameters:
107
107
values are often personalization settings such as "preferred region"
108
108
or "workspace image".
109
109
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
111
111
create workspaces from any image as long as it is in the proper registry:
112
112
113
113
``` hcl
114
114
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"
117
117
sensitive = true # admin (template-wide) parameter
118
118
}
119
119
@@ -188,7 +188,6 @@ resource "kubernetes_pod" "podName" {
188
188
}
189
189
```
190
190
191
-
192
191
#### Delete workspaces
193
192
194
193
When a workspace is deleted, the Coder server essentially runs a
@@ -256,8 +255,8 @@ practices:
256
255
- Ensure the resource has ` curl ` installed
257
256
- Ensure the resource can reach your Coder URL
258
257
- 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 `
261
260
262
261
## Change Management
263
262
You can’t perform that action at this time.
0 commit comments