-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer-feature.json
More file actions
38 lines (38 loc) · 1.34 KB
/
devcontainer-feature.json
File metadata and controls
38 lines (38 loc) · 1.34 KB
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
38
{
"name": "AWS CLI with Custom Aliases",
"id": "aws-cli",
"version": "1.0.3",
"description": "Installs AWS CLI with custom aliases and AWS Toolkit extension",
"documentationURL": "https://github.com/duplocloud-internal/customer-workspace/tree/main/features/aws-cli",
"options": {
"jit": {
"type": "boolean",
"default": false,
"description": "Enable Just-In-Time (JIT) AWS CLI configuration using duploctl on container creation. Requires duploctl to be properly configured."
},
"jitAdmin": {
"type": "boolean",
"default": false,
"description": "Use admin credentials when configuring JIT. Adds --admin flag to duploctl command."
},
"jitInteractive": {
"type": "boolean",
"default": false,
"description": "Enable interactive mode when configuring JIT. Adds --interactive flag to duploctl command."
}
},
"installsAfter": [
"ghcr.io/duplocloud/devcontainers/duploctl"
],
"dependsOn": {
"ghcr.io/devcontainers/features/aws-cli:1": {}
},
"onCreateCommand": "/usr/local/bin/configure-aws-jit.sh",
"customizations": {
"vscode": {
"extensions": [
"amazonwebservices.aws-toolkit-vscode"
]
}
}
}