Skip to main content

SSH proxy command to connect VSCode with Cloud9/CloudX instance using AWS Systems Manager

Project description

cloudX-proxy

A cross-platform SSH proxy command for connecting VSCode to CloudX/Cloud9 EC2 instances using AWS Systems Manager Session Manager.

Overview

cloudX-proxy enables seamless SSH connections from VSCode to EC2 instances using AWS Systems Manager Session Manager, eliminating the need for direct SSH access or public IP addresses. It handles:

  • Automatic instance startup if stopped
  • SSH key distribution via EC2 Instance Connect
  • SSH tunneling through AWS Systems Manager
  • Cross-platform support (Windows, macOS, Linux)

Prerequisites

  1. AWS CLI v2 - Installation Guide
  2. AWS Session Manager Plugin - Installation Guide
  3. OpenSSH Client
  4. uv - Python package installer and resolver
    pip install uv
    
  5. VSCode with Remote SSH Extension installed

AWS Credentials Setup

The proxy expects to find AWS credentials in a profile named 'vscode' by default. These credentials should be the Access Key and Secret Key that were created by deploying the cloudX-user stack in your AWS account. The cloudX-user stack creates an IAM user with the minimal permissions required for:

  • Starting/stopping EC2 instances
  • Establishing SSM sessions
  • Pushing SSH keys via EC2 Instance Connect

Once the SSH session is established, the user has to further configure the instance using generate-sso-config tool. This is a one-time setup unless the user's access to AWS accounts changes, in which case the user should re-run the generate-sso-config tool.

It is recommended to use --generate-directories and --use-ou-structure to create working directories for each account the user has access to.

Everytime the user connects to the instance, ssostart will authenticate the user with AWS SSO and generate temporary credentials.

This ensures you have the appropriate AWS access both for connecting to the instance and for working within it.

The proxy also supports easytocloud's AWS profile organizer. If you use multiple AWS environments, you can store your AWS configuration and credentials in ~/.aws/aws-envs/<environment> directories and use the --aws-env option to specify which environment to use.

Setup

cloudX-proxy now includes a setup command that automates the entire configuration process:

# Basic setup with defaults (vscode profile and key)
uvx cloudx-proxy setup

# Setup with custom profile and key
uvx cloudx-proxy setup --profile myprofile --ssh-key mykey

# Setup with AWS environment
uvx cloudx-proxy setup --aws-env prod

The setup command will:

  1. Configure AWS Profile:

    • Creates/validates AWS profile with cloudX-{env}-{user} format
    • Supports AWS environment directories via --aws-env
    • Uses aws configure for credential input
  2. Manage SSH Keys:

    • Creates new SSH key pair if needed
    • Offers 1Password integration options:
      • Using 1Password SSH agent
      • Storing private key as 1Password document
  3. Configure SSH:

    • Creates ~/.ssh/vscode/config with proper settings
    • Sets up environment-specific configurations
    • Configures ProxyCommand with all necessary parameters
    • Ensures main ~/.ssh/config includes the configuration
  4. Verify Instance Setup:

    • Checks instance setup status
    • Offers to wait for setup completion
    • Monitors setup progress

Example SSH Configuration

The setup command generates a configuration structure like this:

# Base environment config (created once per environment)
Host cloudx-{env}-*
    User ec2-user
    IdentityAgent ~/.1password/agent.sock  # If using 1Password
    IdentityFile ~/.ssh/vscode/key.pub    # .pub for 1Password, no .pub otherwise
    IdentitiesOnly yes                    # If using 1Password
    ProxyCommand uvx cloudx-proxy connect %h %p --profile profile --aws-env env

# Host entries (added for each instance)
Host cloudx-{env}-hostname
    HostName i-1234567890

When adding new instances to an existing environment, the setup command will only add the specific host entry, preserving the existing environment configuration.

VSCode Configuration

  1. Install the "Remote - SSH" extension in VSCode
  2. Configure VSCode settings:
    {
        "remote.SSH.configFile": "~/.ssh/vscode/config",
        "remote.SSH.connectTimeout": 90
    }
    

Usage

Command Line

# Setup new environment and instance
uvx cloudx-proxy setup --profile myprofile --aws-env prod

# Add instance to existing environment
uvx cloudx-proxy setup --profile myprofile --aws-env prod

# Connect to instance
uvx cloudx-proxy connect i-0123456789abcdef0 22 --profile myprofile --aws-env prod

# Connect with custom port
uvx cloudx-proxy connect i-0123456789abcdef0 2222 --profile myprofile

# Connect with different region
uvx cloudx-proxy connect i-0123456789abcdef0 22 --region us-east-1

# Connect with custom key
uvx cloudx-proxy connect i-0123456789abcdef0 22 --key-path ~/.ssh/custom_key.pub

VSCode

  1. Click the "Remote Explorer" icon in the VSCode sidebar
  2. Select "SSH Targets" from the dropdown
  3. Your configured hosts will appear (e.g., cloudx-dev)
  4. Click the "+" icon next to a host to connect
  5. VSCode will handle the rest, using cloudX-proxy to establish the connection

AWS Permissions

The AWS user/role needs these permissions:

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "ec2:StartInstances",
                "ec2:DescribeInstances",
                "ssm:StartSession",
                "ssm:DescribeInstanceInformation",
                "ec2-instance-connect:SendSSHPublicKey"
            ],
            "Resource": "*"
        }
    ]
}

Troubleshooting

  1. Setup Issues

    • If AWS profile validation fails, ensure your user ARN matches the cloudX-{env}-{user} format
    • For 1Password integration, ensure the CLI is installed and you're signed in
    • Check that ~/.ssh/vscode directory has proper permissions (700)
    • Verify main ~/.ssh/config is writable
  2. Connection Timeout

    • Ensure the instance has the SSM agent installed and running
    • Check that your AWS credentials have the required permissions
    • Verify the instance ID is correct
    • Increase the VSCode SSH timeout if needed
  3. SSH Key Issues

    • If using 1Password SSH agent, verify agent is running (~/.1password/agent.sock exists)
    • Check file permissions (600 for private key, 644 for public key)
    • Verify the public key is being successfully pushed to the instance
    • For stored keys in 1Password, ensure you can access them via the CLI
  4. AWS Configuration

    • Confirm AWS CLI is configured with valid credentials
    • Default region is eu-west-1 if not specified in profile or command line
    • If using AWS profile organizer, ensure your environment directory exists at ~/.aws/aws-envs/<environment>/
    • Verify the Session Manager plugin is installed correctly
    • Check that the instance has the required IAM role for SSM
  5. Instance Setup Status

    • If setup appears stuck, check /home/ec2-user/.install-running exists
    • Verify /home/ec2-user/.install-done is created upon completion
    • Check instance system logs for setup script errors

License

MIT License - see LICENSE file for details

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cloudx_proxy-0.2.0.tar.gz (17.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cloudx_proxy-0.2.0-py3-none-any.whl (14.5 kB view details)

Uploaded Python 3

File details

Details for the file cloudx_proxy-0.2.0.tar.gz.

File metadata

  • Download URL: cloudx_proxy-0.2.0.tar.gz
  • Upload date:
  • Size: 17.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.1

File hashes

Hashes for cloudx_proxy-0.2.0.tar.gz
Algorithm Hash digest
SHA256 6bc2bdf2b680ce121525810db04c8a1520d00f360fda4040abca4bf3c669b725
MD5 232c53c443337131f8a9397214388a06
BLAKE2b-256 abe361427f0379bf5071f1285b9d68cbf5a16180fc30039005b76286c70a94eb

See more details on using hashes here.

File details

Details for the file cloudx_proxy-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: cloudx_proxy-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 14.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.1

File hashes

Hashes for cloudx_proxy-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ee9f1c273a3944a566767116f5c81b80a5b5faabb12f0c3a73ebe0fef598fa6d
MD5 9ab2f035048973f0f9bccb1719a73fa3
BLAKE2b-256 4c10f21978f514fb02b440d6430a0082631fe8e6b0bd7369320eb4034a394a91

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page