diff options
author | Samruddhi Khandale <skhandale@microsoft.com> | 2022-08-17 22:48:38 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-17 22:48:38 +0300 |
commit | a630e92c468c241fa029f278e4d7a0ac96142c76 (patch) | |
tree | ebc96705a0dd8be842fb097dcb494155020fd110 /src/aws-cli/devcontainer-feature.json | |
parent | 4ecc275a8d199cdce98cd462fee612d7f687efe4 (diff) |
Move extensions and settings under customizations.vscode (#97)
* move extensions and settings under customizations
* nit
* bump versions
Diffstat (limited to 'src/aws-cli/devcontainer-feature.json')
-rw-r--r-- | src/aws-cli/devcontainer-feature.json | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/aws-cli/devcontainer-feature.json b/src/aws-cli/devcontainer-feature.json index 2f4e052..dbefd53 100644 --- a/src/aws-cli/devcontainer-feature.json +++ b/src/aws-cli/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "aws-cli", - "version": "1.0.0", + "version": "1.0.1", "name": "AWS CLI", "description": "Installs the AWS CLI along with needed dependencies. Useful for base Dockerfiles that often are missing required install dependencies like gpg.", "options": { @@ -13,7 +13,11 @@ "description": "Select or enter an AWS CLI version. (Available versions here: https://github.com/aws/aws-cli/blob/v2/CHANGELOG.rst)" } }, - "extensions": [ - "AmazonWebServices.aws-toolkit-vscode" - ] + "customizations": { + "vscode": { + "extensions": [ + "AmazonWebServices.aws-toolkit-vscode" + ] + } + } } |