Skip to content

Commit c15ae0d

Browse files
committed
aws feature includes the ssm session manager by default now
1 parent 0cc3bd6 commit c15ae0d

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

src/aws-cli/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "AWS CLI with Custom Aliases",
33
"id": "aws-cli",
4-
"version": "1.0.9",
4+
"version": "1.0.10",
55
"description": "Installs AWS CLI with custom aliases and AWS Toolkit extension",
66
"documentationURL": "https://github.com/duplocloud-internal/customer-workspace/tree/main/features/aws-cli",
77
"options": {

src/aws-cli/install.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ apt-get install -y --no-install-recommends fzf
99
apt-get clean
1010
rm -rf /var/lib/apt/lists/*
1111

12+
# Install AWS SSM Session Manager plugin
13+
curl -sSL "https://s3.amazonaws.com/session-manager-downloads/plugin/latest/ubuntu_64bit/session-manager-plugin.deb" -o /tmp/session-manager-plugin.deb
14+
dpkg -i /tmp/session-manager-plugin.deb
15+
rm /tmp/session-manager-plugin.deb
16+
1217
# Use devcontainer environment variables with fallbacks
1318
USER_HOME="${_REMOTE_USER_HOME:-/root}"
1419
USER_NAME="${_REMOTE_USER:-root}"

0 commit comments

Comments
 (0)