This repository was archived by the owner on May 15, 2025. It is now read-only.
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:
1717``` tf
1818module "aws-region" {
1919 source = "registry.coder.com/modules/aws-region/coder"
20- version = "1.0.2 "
20+ version = "1.0.10 "
2121 default = "us-east-1"
2222}
2323
@@ -37,7 +37,7 @@ Change the display name and icon for a region using the corresponding maps:
3737``` tf
3838module "aws-region" {
3939 source = "registry.coder.com/modules/aws-region/coder"
40- version = "1.0.2 "
40+ version = "1.0.10 "
4141 default = "ap-south-1"
4242
4343 custom_names = {
@@ -63,7 +63,7 @@ Hide the Asia Pacific regions Seoul and Osaka:
6363``` tf
6464module "aws-region" {
6565 source = "registry.coder.com/modules/aws-region/coder"
66- version = "1.0.2 "
66+ version = "1.0.10 "
6767 exclude = ["ap-northeast-2", "ap-northeast-3"]
6868}
6969
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
1515``` tf
1616module "jfrog" {
1717 source = "registry.coder.com/modules/jfrog-token/coder"
18- version = "1.0.5 "
18+ version = "1.0.10 "
1919 agent_id = coder_agent.example.id
2020 jfrog_url = "https://XXXX.jfrog.io"
2121 artifactory_access_token = var.artifactory_access_token
@@ -41,7 +41,7 @@ For detailed instructions, please see this [guide](https://coder.com/docs/v2/lat
4141``` tf
4242module "jfrog" {
4343 source = "registry.coder.com/modules/jfrog-token/coder"
44- version = "1.0.5 "
44+ version = "1.0.10 "
4545 agent_id = coder_agent.example.id
4646 jfrog_url = "https://YYYY.jfrog.io"
4747 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
7474``` tf
7575module "jfrog" {
7676 source = "registry.coder.com/modules/jfrog-token/coder"
77- version = "1.0.5 "
77+ version = "1.0.10 "
7878 agent_id = coder_agent.example.id
7979 jfrog_url = "https://XXXX.jfrog.io"
8080 artifactory_access_token = var.artifactory_access_token
@@ -94,7 +94,7 @@ data "coder_workspace" "me" {}
9494
9595module "jfrog" {
9696 source = "registry.coder.com/modules/jfrog-token/coder"
97- version = "1.0.5 "
97+ version = "1.0.10 "
9898 agent_id = coder_agent.example.id
9999 jfrog_url = "https://XXXX.jfrog.io"
100100 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
1414``` tf
1515module "nodejs" {
1616 source = "registry.coder.com/modules/nodejs/coder"
17- version = "1.0.8 "
17+ version = "1.0.10 "
1818 agent_id = coder_agent.example.id
1919}
2020```
@@ -26,7 +26,7 @@ This installs multiple versions of Node.js:
2626``` tf
2727module "nodejs" {
2828 source = "registry.coder.com/modules/nodejs/coder"
29- version = "1.0.8 "
29+ version = "1.0.10 "
3030 agent_id = coder_agent.example.id
3131 node_versions = [
3232 "18",
@@ -44,7 +44,7 @@ A example with all available options:
4444``` tf
4545module "nodejs" {
4646 source = "registry.coder.com/modules/nodejs/coder"
47- version = "1.0.8 "
47+ version = "1.0.10 "
4848 agent_id = coder_agent.example.id
4949 nvm_version = "v0.39.7"
5050 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/
1414``` tf
1515module "vscode-web" {
1616 source = "registry.coder.com/modules/vscode-web/coder"
17- version = "1.0.8 "
17+ version = "1.0.10 "
1818 agent_id = coder_agent.example.id
1919 accept_license = true
2020}
@@ -29,7 +29,7 @@ module "vscode-web" {
2929``` tf
3030module "vscode-web" {
3131 source = "registry.coder.com/modules/vscode-web/coder"
32- version = "1.0.8 "
32+ version = "1.0.10 "
3333 agent_id = coder_agent.example.id
3434 install_prefix = "/home/coder/.vscode-web"
3535 folder = "/home/coder"
@@ -42,7 +42,7 @@ module "vscode-web" {
4242``` tf
4343module "vscode-web" {
4444 source = "registry.coder.com/modules/vscode-web/coder"
45- version = "1.0.8 "
45+ version = "1.0.10 "
4646 agent_id = coder_agent.example.id
4747 extensions = ["github.copilot", "ms-python.python", "ms-toolsai.jupyter"]
4848 accept_license = true
@@ -56,7 +56,7 @@ Configure VS Code's [settings.json](https://code.visualstudio.com/docs/getstarte
5656``` tf
5757module "vscode-web" {
5858 source = "registry.coder.com/modules/vscode-web/coder"
59- version = "1.0.8 "
59+ version = "1.0.10 "
6060 agent_id = coder_agent.example.id
6161 extensions = ["dracula-theme.theme-dracula"]
6262 settings = {
You can’t perform that action at this time.
0 commit comments