-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdevcontainer-feature.json
More file actions
35 lines (35 loc) · 962 Bytes
/
devcontainer-feature.json
File metadata and controls
35 lines (35 loc) · 962 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"id": "gcloud-cli",
"version": "1.0.55",
"name": "Google Cloud CLI",
"documentationURL": "https://github.com/bartventer/arch-devcontainer-features/tree/main/src/gcloud-cli",
"licenseURL": "https://github.com/bartventer/arch-devcontainer-features/blob/main/LICENSE",
"description": "Installs the Google Cloud CLI, including 'gcloud' for interacting with Google Cloud, 'bq' for BigQuery, and 'gsutil' for Cloud Storage.",
"options": {
"version": {
"type": "string",
"default": "latest",
"description": "Select or enter a version of the Google Cloud CLI"
}
},
"customizations": {
"vscode": {
"extensions": []
}
},
"installsAfter": [
"ghcr.io/bartventer/arch-devcontainer-features/common-utils"
],
"containerEnv": {
"PATH": "$PATH:/usr/local/google-cloud-sdk/bin"
},
"keywords": [
"arch linux",
"google cloud",
"gcloud",
"bq",
"gsutil",
"cloud",
"gcp"
]
}