You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found the following bug. The settings variable of the code-server module is currently typed as [map(string).](https://github.com/coder/modules/blob/675c82367a3d53be5f719fca4444fbf5b0ce22ac/code-server/main.tf#L42) This is a bug, in my opinion, because it does now allow settings with subkeys to be used, which causes a Terraform error. After all, the value is not a string.
Hi @gjrtimmer Thanks for highlighting this. Can you please leave your feedback on the existing issue. Also, we are open to contributions if you want to help fix this.
Thanks.
L.S.
I found the following bug. The
settings
variable of thecode-server
module is currently typed as[map(string).](https://github.com/coder/modules/blob/675c82367a3d53be5f719fca4444fbf5b0ce22ac/code-server/main.tf#L42)
This is a bug, in my opinion, because it does now allow settings with subkeys to be used, which causes a Terraform error. After all, the value is not a string.FIX: To allow vscode setting to be set correctly, the type of the variable should be
map(object)
.Please advice.
The text was updated successfully, but these errors were encountered: