Skip to content

Commit

Permalink
Add devcontainer extension (#1273)
Browse files Browse the repository at this point in the history
  • Loading branch information
sastels authored May 2, 2024
1 parent 1dc53ed commit 81edb25
Showing 1 changed file with 15 additions and 10 deletions.
25 changes: 15 additions & 10 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,22 @@
"containerEnv": {
"SHELL": "/bin/zsh"
},
"settings": {
"[terraform]": {
"editor.formatOnSave": true
"customizations": {
"vscode": {
"settings": {
"[terraform]": {
"editor.formatOnSave": true
}
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"hashicorp.terraform",
"hashicorp.hcl",
"redhat.vscode-yaml",
"sebastianbille.iam-legend"
]
}
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"hashicorp.terraform",
"redhat.vscode-yaml",
"sebastianbille.iam-legend"
],
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "vscode"
}
}

0 comments on commit 81edb25

Please sign in to comment.