Skip to content

Commit 32b6901

Browse files
authored
fix(vscode-web): set settings variable type to any (#369)
1 parent 6d27391 commit 32b6901

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

vscode-web/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Automatically install [Visual Studio Code Server](https://code.visualstudio.com/
1414
```tf
1515
module "vscode-web" {
1616
source = "registry.coder.com/modules/vscode-web/coder"
17-
version = "1.0.22"
17+
version = "1.0.26"
1818
agent_id = coder_agent.example.id
1919
accept_license = true
2020
}
@@ -29,7 +29,7 @@ module "vscode-web" {
2929
```tf
3030
module "vscode-web" {
3131
source = "registry.coder.com/modules/vscode-web/coder"
32-
version = "1.0.22"
32+
version = "1.0.26"
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
4343
module "vscode-web" {
4444
source = "registry.coder.com/modules/vscode-web/coder"
45-
version = "1.0.22"
45+
version = "1.0.26"
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
5757
module "vscode-web" {
5858
source = "registry.coder.com/modules/vscode-web/coder"
59-
version = "1.0.22"
59+
version = "1.0.26"
6060
agent_id = coder_agent.example.id
6161
extensions = ["dracula-theme.theme-dracula"]
6262
settings = {

vscode-web/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ variable "order" {
9292
}
9393

9494
variable "settings" {
95-
type = map(string)
95+
type = any
9696
description = "A map of settings to apply to VS Code web."
9797
default = {}
9898
}

0 commit comments

Comments
 (0)