File tree Expand file tree Collapse file tree 4 files changed +14
-14
lines changed Expand file tree Collapse file tree 4 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ Customize the preselected parameter value:
17
17
``` tf
18
18
module "aws-region" {
19
19
source = "registry.coder.com/modules/aws-region/coder"
20
- version = "1.0.2 "
20
+ version = "1.0.10 "
21
21
default = "us-east-1"
22
22
}
23
23
@@ -37,7 +37,7 @@ Change the display name and icon for a region using the corresponding maps:
37
37
``` tf
38
38
module "aws-region" {
39
39
source = "registry.coder.com/modules/aws-region/coder"
40
- version = "1.0.2 "
40
+ version = "1.0.10 "
41
41
default = "ap-south-1"
42
42
43
43
custom_names = {
@@ -63,7 +63,7 @@ Hide the Asia Pacific regions Seoul and Osaka:
63
63
``` tf
64
64
module "aws-region" {
65
65
source = "registry.coder.com/modules/aws-region/coder"
66
- version = "1.0.2 "
66
+ version = "1.0.10 "
67
67
exclude = ["ap-northeast-2", "ap-northeast-3"]
68
68
}
69
69
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ Install the JF CLI and authenticate package managers with Artifactory using Arti
15
15
``` tf
16
16
module "jfrog" {
17
17
source = "registry.coder.com/modules/jfrog-token/coder"
18
- version = "1.0.5 "
18
+ version = "1.0.10 "
19
19
agent_id = coder_agent.example.id
20
20
jfrog_url = "https://XXXX.jfrog.io"
21
21
artifactory_access_token = var.artifactory_access_token
@@ -41,7 +41,7 @@ For detailed instructions, please see this [guide](https://coder.com/docs/v2/lat
41
41
``` tf
42
42
module "jfrog" {
43
43
source = "registry.coder.com/modules/jfrog-token/coder"
44
- version = "1.0.5 "
44
+ version = "1.0.10 "
45
45
agent_id = coder_agent.example.id
46
46
jfrog_url = "https://YYYY.jfrog.io"
47
47
artifactory_access_token = var.artifactory_access_token # An admin access token
@@ -74,7 +74,7 @@ The [JFrog extension](https://open-vsx.org/extension/JFrog/jfrog-vscode-extensio
74
74
``` tf
75
75
module "jfrog" {
76
76
source = "registry.coder.com/modules/jfrog-token/coder"
77
- version = "1.0.5 "
77
+ version = "1.0.10 "
78
78
agent_id = coder_agent.example.id
79
79
jfrog_url = "https://XXXX.jfrog.io"
80
80
artifactory_access_token = var.artifactory_access_token
@@ -94,7 +94,7 @@ data "coder_workspace" "me" {}
94
94
95
95
module "jfrog" {
96
96
source = "registry.coder.com/modules/jfrog-token/coder"
97
- version = "1.0.5 "
97
+ version = "1.0.10 "
98
98
agent_id = coder_agent.example.id
99
99
jfrog_url = "https://XXXX.jfrog.io"
100
100
artifactory_access_token = var.artifactory_access_token
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Automatically installs [Node.js](https://github.com/nodejs/node) via [nvm](https
14
14
``` tf
15
15
module "nodejs" {
16
16
source = "registry.coder.com/modules/nodejs/coder"
17
- version = "1.0.8 "
17
+ version = "1.0.10 "
18
18
agent_id = coder_agent.example.id
19
19
}
20
20
```
@@ -26,7 +26,7 @@ This installs multiple versions of Node.js:
26
26
``` tf
27
27
module "nodejs" {
28
28
source = "registry.coder.com/modules/nodejs/coder"
29
- version = "1.0.8 "
29
+ version = "1.0.10 "
30
30
agent_id = coder_agent.example.id
31
31
node_versions = [
32
32
"18",
@@ -44,7 +44,7 @@ A example with all available options:
44
44
``` tf
45
45
module "nodejs" {
46
46
source = "registry.coder.com/modules/nodejs/coder"
47
- version = "1.0.8 "
47
+ version = "1.0.10 "
48
48
agent_id = coder_agent.example.id
49
49
nvm_version = "v0.39.7"
50
50
nvm_install_prefix = "/opt/nvm"
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Automatically install [Visual Studio Code Server](https://code.visualstudio.com/
14
14
``` tf
15
15
module "vscode-web" {
16
16
source = "registry.coder.com/modules/vscode-web/coder"
17
- version = "1.0.8 "
17
+ version = "1.0.10 "
18
18
agent_id = coder_agent.example.id
19
19
accept_license = true
20
20
}
@@ -29,7 +29,7 @@ module "vscode-web" {
29
29
``` tf
30
30
module "vscode-web" {
31
31
source = "registry.coder.com/modules/vscode-web/coder"
32
- version = "1.0.8 "
32
+ version = "1.0.10 "
33
33
agent_id = coder_agent.example.id
34
34
install_prefix = "/home/coder/.vscode-web"
35
35
folder = "/home/coder"
@@ -42,7 +42,7 @@ module "vscode-web" {
42
42
``` tf
43
43
module "vscode-web" {
44
44
source = "registry.coder.com/modules/vscode-web/coder"
45
- version = "1.0.8 "
45
+ version = "1.0.10 "
46
46
agent_id = coder_agent.example.id
47
47
extensions = ["github.copilot", "ms-python.python", "ms-toolsai.jupyter"]
48
48
accept_license = true
@@ -56,7 +56,7 @@ Configure VS Code's [settings.json](https://code.visualstudio.com/docs/getstarte
56
56
``` tf
57
57
module "vscode-web" {
58
58
source = "registry.coder.com/modules/vscode-web/coder"
59
- version = "1.0.8 "
59
+ version = "1.0.10 "
60
60
agent_id = coder_agent.example.id
61
61
extensions = ["dracula-theme.theme-dracula"]
62
62
settings = {
You can’t perform that action at this time.
0 commit comments