Skip to content

claranet/ssha

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

97 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ssha

ssha makes it easy to SSH into AWS EC2 instances.

Features:

  • discovery of EC2 instances
  • session manager support
  • bastion/jump host support
  • automatic user/key creation with SSM

ssha uses a project-specific .ssha file, so users (or customers less familiar with AWS) don't need to know the architecture. This file would generally live in a project's infrastructure repository, so that everyone can use the same configuration.

Requirements

  • Linux/Unix
  • AWS CLI profiles
  • AWS EC2 instances
  • Python 2.7 or 3.x

Installation

pip install ssha

Usage

ssha looks in the current directory, or parent directories, for a .ssha file. Once you have ssha installed and your .ssha file there, just run ssha.

General usage:

ssha

Show the installed version:

ssha --version

Show the command line options:

ssha --help

Settings file

The .ssha file is a flexible document that defines how a project can be accessed. The document format is HCL. If you have used Terraform then it may be familiar.

See the examples directory for complete examples of .ssha files.

ssha {}

The ssha block defines a project name, and the configs for the project.

ssha {
  /*
  This currently does nothing, but may be used in the future.
  */
  name = "my-project"

  /*
  This defines the configs for the project. In this example,
  each config represents a different environment in the project.
  */
  configs = ["dev", "stage", "prod"]

  /*
  This defines the list of available regions.
  */
  regions = ["eu-west-1", "eu-central-1", "us-west-1"]

  /*
  This defines the version requirement for ssha.
  */
  version = ">=1.4,<2.0"

}

aws {}

The aws block defines the AWS profile or credentials used to access the AWS API. This is used to create a boto3 session so it supports those parameters.

It is recommended that you define profiles in ~/.aws/config as per the AWS CLI documentation and only refer to profile names in the .ssha file.

The aws block can define which region to use. If region_name is not scecified here, you can select it from ssha.regions. If ssha.regions is empty, the region will be picked up from AWS_DEFAULT_REGION or the default region will be used.

aws {
  profile_name = "my-project"
  region_name  = "eu-west-1"
}

bastion {}

Instances in a private subnet might require a "bastion" or "jump" host. If the bastion block is defined, ssha will use it to find a bastion host to use when SSHing into any non-bastion host.

The bastion and discovery blocks use the same configuration syntax. See the discovery documentation for more information.

If the bastion is behind an ELB and cannot be looked up via discovery, the hostname can be specified directly.

bastion {
  /*
  ${config.name} is a variable that resolves to the
  name of the config that was selected by the user.
  */
  hostname = "bastion.${config.name}.my-project.com"
}

The bastion host can be disabled for particular configs or IAM groups by setting the disabled field.

iam group vpn-users {
  /*
  If the user is in the IAM group named "vpn-users"
  and they are connected to a VPN with appropriate
  network and security group configuration, then it
  is not necessary to use a bastion server.
  */
  bastion {
    disabled = true
  }
}

discover {}

The discover block controls which instances will be shown to the user.

The nested ec2 block is used to filter results from an ec2:DescribeInstances API call.

The nested ssm block is used to filter results from an ssm:DescribeInstanceInformation API call.

discover {
  /*
  Define EC2 filters for finding relevant instances.
  */
  ec2 {
    State {
      Name = "running"
    }

    Tags {
      /*
      ${config.name} is a variable that resolves to the
      name of the config that was selected by the user.
      */
      Environment = "${config.name}"
    }

    /*
    TagsNotEqual can be used to exclude instances with matching tags.
    */
    TagsNotEqual {
      Service = "k8s"
    }
  }

  /*
  Define SSM filters for finding relevant instances.
  */
  ssm {
    PingStatus = "Online"
  }
}

display {}

The display block controls how instances are displayed.

display {
  /*
  Use these fields when displaying an instance.
  */
  fields = ["InstanceId", "Tags.Service"]

  /*
  Sort instances by these fields.
  */
  sort  = ["Tags.Service", "InstanceId"]
}

ssh {}

ssha is not an SSH client; it instead figures out the right ssh command to run. The ssh block controls some of the options that will be passed to the ssh command.

ssh {
  /*
  The default username can be overridden if necessary.
  If not defined, the default SSH user name is used.
  */
  username = "ec2-user"

  /*
  Optional prefix to prepend to the computed username
  when username is not set.
  */
  username_prefix = "ssha-"

  /*
  ${ssm.host_keys_file} is a variable that resolves to a temporary file that
  is generated from the SSM command output. For this to work, the SSM document
  command must print the server's SSH host keys to stdout. The host keys can be
  printed with `ssh-keyscan localhost`. Any other commands printing to stdout
  should be redirected to /dev/null so that the output contains the host keys
  and nothing else.
  */
  user_known_hosts_file = "${ssm.host_keys_file}"
}

Computed values:

  • ssh.identityfile_public - This is the path of the first .pub file that matches a private identity file in the SSH config. The primary use case for this is to install it onto a server using the SSM command, allowing key based authentication.
  • ssh.username - This defaults to the default user in the SSH config.

ssm {}

The ssm block controls SSM behaviour.

Run Command

The use case for this is to run a command on the instance that creates a user and adds their SSH key. This allows for SSH access to EC2 instances that is restricted by IAM access; whoever has IAM access to the SSM document is allowed to give themselves SSH access to EC2 instances

This requires the EC2 instances to be using the SSM agent, and it requires an SSM document that handles user creation.

ssm {
  document {
    name = "add-ssh-key"
  }

  parameters {
    username = ["${ssh.username}"]
    key      = ["$(cat '${ssh.identityfile_public}')"]
  }
}

Computed values:

  • ssm.host_keys_file - This is the path of a temporary file that is is generated from the SSM command output. For this to work, the SSM document command must print the server's SSH host keys to stdout. The host keys can be printed with ssh-keyscan localhost. Any other commands printing to stdout should be redirected to /dev/null so that the output contains the host keys and nothing else.
  • ssh.temporary_key - Generates a temporary key pair and adds it to the SSH agent for use with the session.

Session Manager

The use case for this is to use the Session Manager plugin to access instances via AWS Session Manager. This provides a shell using the SSM Agent user, and does not create users on EC2 instances. It also does not require direct network access to the instances, removing the need for a bastion server, and removing the need for port 22 access.

This requires the EC2 instances to be using a compatible version of the SSM agent.

ssm {
  session_manager = true
}

Both

You can combine the above two configurations so that ssha will use Session Manager where possible, or fall back to Run Command if the user does not have the Session Manager plugin installed.

config [name] {}

Blocks can be updated per config.

ssha {
  name = "my-project"
  configs = ["dev-nonprod", "stage-nonprod", "prod"]
}

/*
Configs use this AWS profile by default.
*/
aws {
  profile_name = "my-project-nonprod"
  region_name  = "eu-central-1"
}

/*
The "prod" config uses a different AWS profile.
*/
config prod {
  aws {
    profile_name = "my-project-prod"
  }
}

/*
Wildcard characters can be used to match multiple configs.
Python's fnmatch is used for pattern matching.
*/
config "*-nonprod" {
  ...
}

iam group [name] ... {}

Blocks can be updated per IAM user group.

The use case for this is to have certain users with SSH access restricted to a subset of EC2 instances.

iam group developers {
  /*
  Use a different document with more restrictions.
  */
  ssm document {
    name = "add-ssh-key-developers"
  }

  /*
  Add an extra filter to only use bastion instances with this tag.
  */
  bastion ec2 Tags {
    "SSH:developers" = ""
  }

  /*
  Add an extra filter to only show instances with this tag.
  */
  discover ec2 Tags {
    "SSH:developers" = ""
  }
}

Contributing

If you have an idea for a new feature, please submit an issue first to confirm whether a pull request would be accepted.

Style guide

  • PEP 8
  • 120 character limit

Testing

Run make test to run unit tests.

Run tox to run further tests.

Releases

No releases published

Packages

No packages published