generated from devcontainers/feature-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdevcontainer-feature.json
37 lines (37 loc) · 1.37 KB
/
devcontainer-feature.json
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
36
37
{
"id": "custom-root-ca",
"name": "Custom Root CA",
"version": "1.3.0",
"description": "🔒 Add a custom Root CA to your development environment",
"documentationURL": "https://github.com/bdsoha/dev-containers/tree/main/src/custom-root-ca",
"licenseURL": "https://github.com/bdsoha/dev-containers/blob/main/LICENSE",
"options": {
"name": {
"type": "string",
"default": "custom-root-ca.crt",
"description": "Name of the custom root CA"
},
"source": {
"type": "string",
"default": "https://netfree.link/cacert/isp/018/ca.crt",
"proposals": [
"https://netfree.link/cacert/isp/018/ca.crt",
"https://netfree.link/cacert/isp/018/ca.crt,https://netfree.link/cacert/isp/019/ca.crt"
],
"description": "Remote location *(or comma seperated locations)* of the certificate in PEM format to be added"
},
"bundle": {
"type": "boolean",
"default": true,
"description": "Create a certificate bundle of all applied CAs"
},
"verify": {
"type": "boolean",
"default": true,
"description": "Verify the downloaded SSL certificate"
}
},
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
]
}