Unverified Commit b89a41f6 authored by Brigit Murtaugh's avatar Brigit Murtaugh Committed by GitHub

Add custom instructions and bump versions (#1317)

parent 66385f3d
{ {
"id": "anaconda", "id": "anaconda",
"version": "1.0.12", "version": "1.0.13",
"name": "Anaconda", "name": "Anaconda",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/anaconda", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/anaconda",
"options": { "options": {
...@@ -17,6 +17,17 @@ ...@@ -17,6 +17,17 @@
"CONDA_DIR": "/usr/local/conda", "CONDA_DIR": "/usr/local/conda",
"PATH": "/usr/local/conda/bin:${PATH}" "PATH": "/usr/local/conda/bin:${PATH}"
}, },
"customizations": {
"vscode": {
"settings": {
"github.copilot.chat.codeGeneration.instructions": [
{
"text": "This dev container includes Anaconda and the conda package manager pre-installed and available on the `PATH` for data science and Python development. Additional packages installed using Conda will be downloaded from Anaconda or another repository configured by the user. A user can install different versions of Python than the one in this dev container by running a command like: conda install python=3.7"
}
]
}
}
},
"installsAfter": [ "installsAfter": [
"ghcr.io/devcontainers/features/common-utils" "ghcr.io/devcontainers/features/common-utils"
] ]
......
{ {
"id": "aws-cli", "id": "aws-cli",
"version": "1.1.0", "version": "1.1.1",
"name": "AWS CLI", "name": "AWS CLI",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/aws-cli", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/aws-cli",
"description": "Installs the AWS CLI along with needed dependencies. Useful for base Dockerfiles that often are missing required install dependencies like gpg.", "description": "Installs the AWS CLI along with needed dependencies. Useful for base Dockerfiles that often are missing required install dependencies like gpg.",
...@@ -18,8 +18,15 @@ ...@@ -18,8 +18,15 @@
"vscode": { "vscode": {
"extensions": [ "extensions": [
"AmazonWebServices.aws-toolkit-vscode" "AmazonWebServices.aws-toolkit-vscode"
],
"settings": {
"github.copilot.chat.codeGeneration.instructions": [
{
"text": "This dev container includes the AWS CLI along with needed dependencies pre-installed and available on the `PATH`, along with the AWS Toolkit extensions for AWS development."
}
] ]
} }
}
}, },
"installsAfter": [ "installsAfter": [
"ghcr.io/devcontainers/features/common-utils" "ghcr.io/devcontainers/features/common-utils"
......
{ {
"id": "azure-cli", "id": "azure-cli",
"version": "1.2.6", "version": "1.2.7",
"name": "Azure CLI", "name": "Azure CLI",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/azure-cli", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/azure-cli",
"description": "Installs the Azure CLI along with needed dependencies. Useful for base Dockerfiles that often are missing required install dependencies like gpg.", "description": "Installs the Azure CLI along with needed dependencies. Useful for base Dockerfiles that often are missing required install dependencies like gpg.",
...@@ -41,8 +41,15 @@ ...@@ -41,8 +41,15 @@
"vscode": { "vscode": {
"extensions": [ "extensions": [
"ms-vscode.azurecli" "ms-vscode.azurecli"
],
"settings": {
"github.copilot.chat.codeGeneration.instructions": [
{
"text": "This dev container includes the Azure CLI along with needed dependencies pre-installed and available on the `PATH`, along with the Azure CLI extension for Azure development."
}
] ]
} }
}
}, },
"installsAfter": [ "installsAfter": [
"ghcr.io/devcontainers/features/common-utils" "ghcr.io/devcontainers/features/common-utils"
......
{ {
"id": "conda", "id": "conda",
"version": "1.0.9", "version": "1.0.10",
"name": "Conda", "name": "Conda",
"description": "A cross-platform, language-agnostic binary package manager", "description": "A cross-platform, language-agnostic binary package manager",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/conda", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/conda",
...@@ -26,6 +26,17 @@ ...@@ -26,6 +26,17 @@
"CONDA_SCRIPT":"/opt/conda/etc/profile.d/conda.sh", "CONDA_SCRIPT":"/opt/conda/etc/profile.d/conda.sh",
"PATH": "/opt/conda/bin:${PATH}" "PATH": "/opt/conda/bin:${PATH}"
}, },
"customizations": {
"vscode": {
"settings": {
"github.copilot.chat.codeGeneration.instructions": [
{
"text": "This dev container includes the conda package manager pre-installed and available on the `PATH` for data science and Python development. Additional packages installed using Conda will be downloaded from Anaconda or another repository configured by the user. A user can install different versions of Python than the one in this dev container by running a command like: conda install python=3.7"
}
]
}
}
},
"installsAfter": [ "installsAfter": [
"ghcr.io/devcontainers/features/common-utils" "ghcr.io/devcontainers/features/common-utils"
] ]
......
{ {
"id": "desktop-lite", "id": "desktop-lite",
"version": "1.2.5", "version": "1.2.6",
"name": "Light-weight Desktop", "name": "Light-weight Desktop",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/desktop-lite", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/desktop-lite",
"description": "Adds a lightweight Fluxbox based desktop to the container that can be accessed using a VNC viewer or the web. GUI-based commands executed from the built-in VS code terminal will open on the desktop automatically.", "description": "Adds a lightweight Fluxbox based desktop to the container that can be accessed using a VNC viewer or the web. GUI-based commands executed from the built-in VS code terminal will open on the desktop automatically.",
...@@ -54,6 +54,17 @@ ...@@ -54,6 +54,17 @@
"containerEnv": { "containerEnv": {
"DISPLAY": ":1" "DISPLAY": ":1"
}, },
"customizations": {
"vscode": {
"settings": {
"github.copilot.chat.codeGeneration.instructions": [
{
"text": "This dev container includes a lightweight Fluxbox based desktop that can be accessed using a VNC viewer or the web. GUI-based commands executed from the built-in VS Code terminal will open on the desktop automatically."
}
]
}
}
},
"installsAfter": [ "installsAfter": [
"ghcr.io/devcontainers/features/common-utils" "ghcr.io/devcontainers/features/common-utils"
] ]
......
{ {
"id": "dotnet", "id": "dotnet",
"version": "2.2.0", "version": "2.2.1",
"name": "Dotnet CLI", "name": "Dotnet CLI",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/dotnet", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/dotnet",
"description": "This Feature installs the latest .NET SDK, which includes the .NET CLI and the shared runtime. Options are provided to choose a different version or additional versions.", "description": "This Feature installs the latest .NET SDK, which includes the .NET CLI and the shared runtime. Options are provided to choose a different version or additional versions.",
...@@ -49,8 +49,15 @@ ...@@ -49,8 +49,15 @@
"vscode": { "vscode": {
"extensions": [ "extensions": [
"ms-dotnettools.csharp" "ms-dotnettools.csharp"
],
"settings": {
"github.copilot.chat.codeGeneration.instructions": [
{
"text": "This dev container includes the .NET SDK, which includes the .NET CLI and the shared runtime, pre-installed and available on the `PATH`, along with the C# language extension for .NET development."
}
] ]
} }
}
}, },
"installsAfter": [ "installsAfter": [
"ghcr.io/devcontainers/features/common-utils" "ghcr.io/devcontainers/features/common-utils"
......
{ {
"id": "git-lfs", "id": "git-lfs",
"version": "1.2.3", "version": "1.2.4",
"name": "Git Large File Support (LFS)", "name": "Git Large File Support (LFS)",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/git-lfs", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/git-lfs",
"description": "Installs Git Large File Support (Git LFS) along with needed dependencies. Useful for base Dockerfiles that often are missing required install dependencies like git and curl.", "description": "Installs Git Large File Support (Git LFS) along with needed dependencies. Useful for base Dockerfiles that often are missing required install dependencies like git and curl.",
...@@ -25,6 +25,17 @@ ...@@ -25,6 +25,17 @@
"description": "Installs 'git-lfs' from GitHub releases instead of package manager feeds" "description": "Installs 'git-lfs' from GitHub releases instead of package manager feeds"
} }
}, },
"customizations": {
"vscode": {
"settings": {
"github.copilot.chat.codeGeneration.instructions": [
{
"text": "This dev container includes Git Large File Support (Git LFS) along with needed dependencies pre-installed and available on the `PATH`."
}
]
}
}
},
"postCreateCommand": "/usr/local/share/pull-git-lfs-artifacts.sh", "postCreateCommand": "/usr/local/share/pull-git-lfs-artifacts.sh",
"installsAfter": [ "installsAfter": [
"ghcr.io/devcontainers/features/common-utils" "ghcr.io/devcontainers/features/common-utils"
......
{ {
"id": "git", "id": "git",
"version": "1.3.2", "version": "1.3.3",
"name": "Git (from source)", "name": "Git (from source)",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/git", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/git",
"description": "Install an up-to-date version of Git, built from source as needed. Useful for when you want the latest and greatest features. Auto-detects latest stable version and installs needed dependencies.", "description": "Install an up-to-date version of Git, built from source as needed. Useful for when you want the latest and greatest features. Auto-detects latest stable version and installs needed dependencies.",
...@@ -21,6 +21,17 @@ ...@@ -21,6 +21,17 @@
"description": "Install from PPA if available (only supported for Ubuntu distributions)" "description": "Install from PPA if available (only supported for Ubuntu distributions)"
} }
}, },
"customizations": {
"vscode": {
"settings": {
"github.copilot.chat.codeGeneration.instructions": [
{
"text": "This dev container includes an up-to-date version of Git, built from source as needed, pre-installed and available on the `PATH`."
}
]
}
}
},
"installsAfter": [ "installsAfter": [
"ghcr.io/devcontainers/features/common-utils" "ghcr.io/devcontainers/features/common-utils"
] ]
......
{ {
"id": "go", "id": "go",
"version": "1.3.1", "version": "1.3.2",
"name": "Go", "name": "Go",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/go", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/go",
"description": "Installs Go and common Go utilities. Auto-detects latest version and installs needed dependencies.", "description": "Installs Go and common Go utilities. Auto-detects latest version and installs needed dependencies.",
...@@ -27,8 +27,15 @@ ...@@ -27,8 +27,15 @@
"vscode": { "vscode": {
"extensions": [ "extensions": [
"golang.Go" "golang.Go"
],
"settings": {
"github.copilot.chat.codeGeneration.instructions": [
{
"text": "This dev container includes Go and common Go utilities pre-installed and available on the `PATH`, along with the Go language extension for Go development."
}
] ]
} }
}
}, },
"containerEnv": { "containerEnv": {
"GOROOT": "/usr/local/go", "GOROOT": "/usr/local/go",
......
{ {
"id": "hugo", "id": "hugo",
"version": "1.1.2", "version": "1.1.3",
"name": "Hugo", "name": "Hugo",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/hugo", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/hugo",
"options": { "options": {
...@@ -22,6 +22,17 @@ ...@@ -22,6 +22,17 @@
"HUGO_DIR": "/usr/local/hugo", "HUGO_DIR": "/usr/local/hugo",
"PATH": "/usr/local/hugo/bin:${PATH}" "PATH": "/usr/local/hugo/bin:${PATH}"
}, },
"customizations": {
"vscode": {
"settings": {
"github.copilot.chat.codeGeneration.instructions": [
{
"text": "This dev container includes Hugo, a popular open-source static site generator written in Go, pre-installed and available on the `PATH`."
}
]
}
}
},
"installsAfter": [ "installsAfter": [
"ghcr.io/devcontainers/features/common-utils" "ghcr.io/devcontainers/features/common-utils"
] ]
......
...@@ -105,7 +105,12 @@ ...@@ -105,7 +105,12 @@
"vscjava.vscode-java-pack" "vscjava.vscode-java-pack"
], ],
"settings": { "settings": {
"java.import.gradle.java.home": "/usr/local/sdkman/candidates/java/current" "java.import.gradle.java.home": "/usr/local/sdkman/candidates/java/current",
"github.copilot.chat.codeGeneration.instructions": [
{
"text": "This dev container includes Java, SDKMAN! and needed dependencies pre-installed and available on the `PATH`, along with the Java language extension pack for Java development."
}
]
} }
} }
}, },
......
{ {
"id": "kubectl-helm-minikube", "id": "kubectl-helm-minikube",
"version": "1.2.0", "version": "1.2.1",
"name": "Kubectl, Helm, and Minikube", "name": "Kubectl, Helm, and Minikube",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/kubectl-helm-minikube", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/kubectl-helm-minikube",
"description": "Installs latest version of kubectl, Helm, and optionally minikube. Auto-detects latest versions and installs needed dependencies.", "description": "Installs latest version of kubectl, Helm, and optionally minikube. Auto-detects latest versions and installs needed dependencies.",
...@@ -44,6 +44,17 @@ ...@@ -44,6 +44,17 @@
"type": "volume" "type": "volume"
} }
], ],
"customizations": {
"vscode": {
"settings": {
"github.copilot.chat.codeGeneration.instructions": [
{
"text": "This dev container includes kubectl, Helm, optionally minikube, and needed dependencies pre-installed and available on the `PATH`. When configuring Ingress for your Kubernetes cluster, note that by default Kubernetes will bind to a specific interface's IP rather than localhost or all interfaces. This is why you need to use the Kubernetes Node's IP when connecting - even if there's only one Node as in the case of Minikube."
}
]
}
}
},
"installsAfter": [ "installsAfter": [
"ghcr.io/devcontainers/features/common-utils" "ghcr.io/devcontainers/features/common-utils"
] ]
......
{ {
"id": "nix", "id": "nix",
"version": "1.3.0", "version": "1.3.1",
"name": "Nix Package Manager", "name": "Nix Package Manager",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/nix", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/nix",
"description": "Installs the Nix package manager and optionally a set of packages.", "description": "Installs the Nix package manager and optionally a set of packages.",
...@@ -40,6 +40,17 @@ ...@@ -40,6 +40,17 @@
"description": "Optional comma separated list of extra lines to add to /etc/nix/nix.conf." "description": "Optional comma separated list of extra lines to add to /etc/nix/nix.conf."
} }
}, },
"customizations": {
"vscode": {
"settings": {
"github.copilot.chat.codeGeneration.instructions": [
{
"text": "This dev container includes the Nix package manager pre-installed and available on the `PATH`. Currently `flakeUri` works best with a remote URI (e.g., `github:nixos/nixpkgs/nixpkgs-unstable#hello`) as local files need to be in the image. The dev container supports two installation models for Nix: multi-user and single user. Multi-user is the default."
}
]
}
}
},
"installsAfter": [ "installsAfter": [
"ghcr.io/devcontainers/features/common-utils" "ghcr.io/devcontainers/features/common-utils"
], ],
......
{ {
"id": "nvidia-cuda", "id": "nvidia-cuda",
"version": "1.2.0", "version": "1.2.1",
"name": "NVIDIA CUDA", "name": "NVIDIA CUDA",
"description": "Installs shared libraries for NVIDIA CUDA.", "description": "Installs shared libraries for NVIDIA CUDA.",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/nvidia-cuda", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/nvidia-cuda",
...@@ -84,6 +84,17 @@ ...@@ -84,6 +84,17 @@
"description": "Version of cuDNN to install" "description": "Version of cuDNN to install"
} }
}, },
"customizations": {
"vscode": {
"settings": {
"github.copilot.chat.codeGeneration.instructions": [
{
"text": "This dev container includes shared libraries for NVIDIA CUDA pre-installed and available on the `PATH`. It's only useful for dev containers that run on a host machine with an NVIDIA GPU. Within your dev container, use the `nvidia-smi` command to ensure that your GPU is available for CUDA. If the `nvidia-smi` command is not available, you may need to follow NVIDIA's instructions to install the NVIDIA Container Toolkit on your host machine."
}
]
}
}
},
"installsAfter": [ "installsAfter": [
"ghcr.io/devcontainers/features/common-utils" "ghcr.io/devcontainers/features/common-utils"
] ]
......
{ {
"id": "oryx", "id": "oryx",
"version": "1.4.0", "version": "1.4.1",
"name": "Oryx", "name": "Oryx",
"description": "Installs the oryx CLI", "description": "Installs the oryx CLI",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/oryx", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/oryx",
...@@ -13,6 +13,17 @@ ...@@ -13,6 +13,17 @@
"DEBIAN_FLAVOR": "focal-scm", "DEBIAN_FLAVOR": "focal-scm",
"PATH": "/usr/local/oryx:${PATH}" "PATH": "/usr/local/oryx:${PATH}"
}, },
"customizations": {
"vscode": {
"settings": {
"github.copilot.chat.codeGeneration.instructions": [
{
"text": "This dev container includes the oryx CLI pre-installed and available on the `PATH`."
}
]
}
}
},
"installsAfter": [ "installsAfter": [
"ghcr.io/devcontainers/features/common-utils", "ghcr.io/devcontainers/features/common-utils",
"ghcr.io/devcontainers/features/dotnet" "ghcr.io/devcontainers/features/dotnet"
......
{ {
"id": "php", "id": "php",
"version": "1.1.3", "version": "1.1.4",
"name": "PHP", "name": "PHP",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/php", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/php",
"options": { "options": {
...@@ -29,8 +29,15 @@ ...@@ -29,8 +29,15 @@
"bmewburn.vscode-intelephense-client", "bmewburn.vscode-intelephense-client",
"xdebug.php-pack", "xdebug.php-pack",
"devsense.phptools-vscode" "devsense.phptools-vscode"
],
"settings": {
"github.copilot.chat.codeGeneration.instructions": [
{
"text": "This dev container includes PHP pre-installed and available on the `PATH`, along with PHP language extensions for PHP development."
}
] ]
} }
}
}, },
"containerEnv": { "containerEnv": {
"PHP_PATH": "/usr/local/php/current", "PHP_PATH": "/usr/local/php/current",
......
{ {
"id": "powershell", "id": "powershell",
"version": "1.5.0", "version": "1.5.1",
"name": "PowerShell", "name": "PowerShell",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/powershell", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/powershell",
"description": "Installs PowerShell along with needed dependencies. Useful for base Dockerfiles that often are missing required install dependencies like gpg.", "description": "Installs PowerShell along with needed dependencies. Useful for base Dockerfiles that often are missing required install dependencies like gpg.",
...@@ -33,6 +33,13 @@ ...@@ -33,6 +33,13 @@
"extensions": [ "extensions": [
"ms-vscode.powershell" "ms-vscode.powershell"
] ]
},
"settings": {
"github.copilot.chat.codeGeneration.instructions": [
{
"text": "This dev container includes PowerShell along with needed dependencies pre-installed and available on the `PATH`, along with the PowerShell extension."
}
]
} }
}, },
"installsAfter": [ "installsAfter": [
......
{ {
"id": "ruby", "id": "ruby",
"version": "1.3.0", "version": "1.3.1",
"name": "Ruby (via rvm)", "name": "Ruby (via rvm)",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/ruby", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/ruby",
"description": "Installs Ruby, rvm, rbenv, common Ruby utilities, and needed dependencies.", "description": "Installs Ruby, rvm, rbenv, common Ruby utilities, and needed dependencies.",
...@@ -21,8 +21,15 @@ ...@@ -21,8 +21,15 @@
"vscode": { "vscode": {
"extensions": [ "extensions": [
"shopify.ruby-lsp" "shopify.ruby-lsp"
],
"settings": {
"github.copilot.chat.codeGeneration.instructions": [
{
"text": "This dev container includes Ruby, rvm, rbenv, common Ruby utilities, and needed dependencies pre-installed and available on the `PATH`, along with the Ruby language extension for Ruby development."
}
] ]
} }
}
}, },
"containerEnv": { "containerEnv": {
"GEM_PATH": "/usr/local/rvm/gems/default:/usr/local/rvm/gems/default@global", "GEM_PATH": "/usr/local/rvm/gems/default:/usr/local/rvm/gems/default@global",
......
{ {
"id": "rust", "id": "rust",
"version": "1.3.1", "version": "1.3.2",
"name": "Rust", "name": "Rust",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/rust", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/rust",
"description": "Installs Rust, common Rust utilities, and their required dependencies", "description": "Installs Rust, common Rust utilities, and their required dependencies",
...@@ -64,7 +64,12 @@ ...@@ -64,7 +64,12 @@
"settings": { "settings": {
"files.watcherExclude": { "files.watcherExclude": {
"**/target/**": true "**/target/**": true
},
"github.copilot.chat.codeGeneration.instructions": [
{
"text": "This dev container includes Rust, common Rust utilities, and needed dependencies pre-installed and available on the `PATH`, along with the Rust language extension for Rust development."
} }
]
} }
} }
}, },
......
{ {
"id": "sshd", "id": "sshd",
"version": "1.0.9", "version": "1.0.10",
"name": "SSH server", "name": "SSH server",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/sshd", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/sshd",
"description": "Adds a SSH server into a container so that you can use an external terminal, sftp, or SSHFS to interact with it.", "description": "Adds a SSH server into a container so that you can use an external terminal, sftp, or SSHFS to interact with it.",
...@@ -15,6 +15,17 @@ ...@@ -15,6 +15,17 @@
} }
}, },
"entrypoint": "/usr/local/share/ssh-init.sh", "entrypoint": "/usr/local/share/ssh-init.sh",
"customizations": {
"vscode": {
"settings": {
"github.copilot.chat.codeGeneration.instructions": [
{
"text": "This dev container includes an SSH server so that you can use an external terminal, sftp, or SSHFS to interact with it. The first time you've started the container, you will want to set a password for your user. With each connection to the container, you'll want to forward the SSH port to your local machine and use a local terminal or other tool to connect using the password you set."
}
]
}
}
},
"installsAfter": [ "installsAfter": [
"ghcr.io/devcontainers/features/common-utils" "ghcr.io/devcontainers/features/common-utils"
] ]
......
{ {
"id": "terraform", "id": "terraform",
"version": "1.3.9", "version": "1.3.10",
"name": "Terraform, tflint, and TFGrunt", "name": "Terraform, tflint, and TFGrunt",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/terraform", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/terraform",
"description": "Installs the Terraform CLI and optionally TFLint and Terragrunt. Auto-detects latest version and installs needed dependencies.", "description": "Installs the Terraform CLI and optionally TFLint and Terragrunt. Auto-detects latest version and installs needed dependencies.",
...@@ -65,6 +65,11 @@ ...@@ -65,6 +65,11 @@
"terraform.languageServer.enable": true, "terraform.languageServer.enable": true,
"terraform.languageServer.args": [ "terraform.languageServer.args": [
"serve" "serve"
],
"github.copilot.chat.codeGeneration.instructions": [
{
"text": "This dev container includes the Terraform CLI and optionally TFLint and Terragrunt pre-installed and available on the `PATH`, along with the Terraform extension for Terraform development."
}
] ]
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment