Important
This package is no longer actively maintained or supported.
A replacement ssh-agent that uses the caller's IAM identity to access a list of permitted ssh identities.
iam-ssh-agent
is designed to be used in less trusted continuous integration
environments where you want to use an ssh key to clone source control
repositories without providing the raw key material.
iam-ssh-agent
is split into two components: a binary that binds a unix domain
socket with the ssh-agent protocol, and a serverless API that uses API Gateway
and Lambda functions to answer list keys
and sign data
requests.
/agent
a Rust crate that builds theiam-ssh-agent
binary./service
an AWS SAM project that deploys the serverless backend for theiam-ssh-agent
binary.
For deployment instructions see the service
README.
Once you have successfully deployed the service you can
add keys, grant, and
test access.
For development and testing:
/client
a node package used for testing the ssh-agent implementation and comparing output to other ssh-agent implementations.
By storing the ssh private keys behind a service boundary, and providing an authenticated, access controlled signing service, client environments can authenticate without access to the ssh private keys.
Generated using https://sequencediagram.org/
The agent binary should be a near drop-in replacement for existing uses of
ssh-agent, or provide a pathway for you to remove private key material from
continuous integration hosts. It should be installed in the same place you
currently use ssh
.
The agent requires an IAM_SSH_AGENT_BACKEND_URL
environment variable. This URL
will be printed following a successful deploy of the service and
will be formatted like https://{api-gateway-id}.execute-api.{region}.amazonaws.com/Prod
.
The agent binary will auto discover IAM credentials in the expected places: environment variables, EC2 instance metadata, or ECS task metadata. Requests to the API Gateway will be signed with these credentials and the service will provide access to keys listed in the DynamoDB Permissions table for the caller's IAM entity.
The agent can be installed from the Debian packages attached to the
GitHub releases or
using cargo
to build the binary yourself. It is also published to Docker hub
as buildkite/iam-ssh-agent.
An API Gateway is configured to forward requests to two lambdas: ListIdentities
and GetSignature. The iam-ssh-agent
never sees the raw key material, it can
only ask for a list of available keys or a signature for a key it has access
to.
Keys are stored in AWS Systems Manager Parameter Store where the private keys can be encrypted with a KMS key. Key permissions are stored in a DynamoDB table keyed by IAM Entity Unique ID.
See the deploying guide for instructions on how to deploy the service in your AWS Organization.
You can add keys to AWS Systems Manager Parameter Store using the AWS CLI or Console. Public and private keys are stored in separate parameters. The ListIdentities lambda has access to the public key parameters and the GetSignature lambda has access to both.
You can use any hierarchy to store your public and private keys in SSM so long
as the parameter paths end in key.pub
and key
respectively.
Example key hierarchies:
# GitHub repository deploy key
/github/keithduncan/iam-ssh-agent/key.pub
/github/keithduncan/iam-ssh-agent/key
# Machine user key
/github/machine-user1/key.pub
/github/machine-user1/key
# GitLab Global Key
/gitlab.company.com/global/name/key.pub
/gitlab.company.com/global/name/key
The GetSignature lambda IAM role includes a policy that permits kms:Decrypt
using the aws/ssm
KMS key. You can store your ssh private keys in a
SecureString
parameter encrypted with that key to prevent unintended access to
the raw key material. Deploying this service to a unique AWS account also
helps limit access to the key material.
To generate and store an ssh key pair in the Parameter Store:
# Don't enter a passphrase, the private key will be encrypted using a KMS key
$ ssh-keygen -f test-key
# Store the keys in Parameter Store
$ aws ssm put-parameter \
--name /github/username/repository/key.pub \
--type String \
--value "$(<test-key.pub)"
$ aws ssm put-parameter \
--name /github/username/repository/key \
--type SecureString \
--value "$(<test-key)"
$ aws ssm get-parameter \
--name /github/username/repository/key \
--output text \
--query 'Parameter.ARN'
Once you have added both keys to the Parameter Store, and submitted the public key to the service you want to access, delete the key files from your file system. When adding public keys to a service, give the key a descriptive name like the Parameter ARN printed by the last command.
Once you have added the keys to the parameter store, you can grant IAM entities access to those keys.
Use the AWS CLI to look up the Unique ID for the IAM entity that you will be
granting access to. The Unique IDs are not exposed in the AWS Console. For
roles, use get-role
and copy the RoleId
for use in the next step:
aws iam get-role --role-name MyRole
{
"Role": {
"Path": "/",
"RoleName": "MyRole",
"RoleId": "AROAXXXXXXXXXXXXXXXXX",
"Arn": "arn:aws:iam::{account}:role/MyRole",
"CreateDate": "2020-01-22T10:52:29Z",
"AssumeRolePolicyDocument": {
"Version": "2008-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"Service": "ecs-tasks.amazonaws.com"
},
"Action": "sts:AssumeRole"
},
{
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::{account}:root"
},
"Action": "sts:AssumeRole"
}
]
},
"Description": "",
"MaxSessionDuration": 3600,
"RoleLastUsed": {
"LastUsedDate": "2020-03-04T04:38:00Z",
"Region": "us-east-1"
}
}
}
See IAM Identifiers Unique ID for more details on IAM Unique IDs.
Once you have the Unique ID for the entity, you can add a permission to the DynamoDB permissions table. You can add an item using the AWS Console or CLI:
aws dynamodb update-item \
--table-name MyPermissionsTableName \
--key '{"IamEntityUniqueId":{"S":"AROAXXXXXXXXXXXXXXXXX"}}' \
--update-expression 'ADD #p :keys' \
--expression-attribute-names '{"#p":"Parameters"}' \
--expression-attribute-values '{":keys":{"SS":["/github/machine-user1/key"]}}'
An ssh-agent with multiple keys can cause issues when authenticating to source
control services. If an IAM entity with access to multiple keys connects to
github.com
the ssh server will accept the first ssh key offered and
authenticate successfully but may fail authorization when attempting to
clone a repository if the key doesn't have access.
Instead of using multiple keys, consider using a GitHub machine user or a GitLab Global Deploy key which allow a single key to access multiple repositories.
How you grant access to the API Gateway to list keys
and sign data
is
determined by whether you deployed the service to the same account as your
calling IAM entities or to a different account.
When using an API Gateway deployed to the same account, you don't have to provide explicit access in the IAM entity policies, the API Gateway Resource Policy is sufficient to permit access. An explicit deny in an IAM Policy is of course respected.
When using an API Gateway deployed to a different account (cross account IAM access) you must configure access in both accounts. The API Gateway's resource policy must include the calling account’s account ID (or source VPC / VPC Endpoint if using a Private endpoint), and the calling account’s IAM entity must be granted an explicit allow with an IAM Policy Statement:
{
"Statement": [
{
"Action": "execute-api:Invoke",
"Resource": "arn:aws:execute-api:{region}:{account-id}:{api-gateway-id}/Prod/*/*",
"Effect": "Allow"
}
]
}
See the API Gateway Authorization Flow documentation for more details.
When configuring the API Gateway with EndpointConfiguration: PRIVATE
some
additional configuration may be necessary.
First, configure a VPC Endpoint for execute-api
in the VPC from which you want
to access the API Gateway. Ensure the VPC Endpoint security groups allow inbound
network traffic from the security group that the iam-ssh-agent
binary will
execute in.
If Private DNS is enabled, all execute-api
requests from this VPC will be
routed via this endpoint. If this is not appropriate for your VPC, you can
disable Private DNS, associate the API Gateway with the VPC Endpoint
, and use the Route 53 alias DNS name for your private API gateway instead.
iam-ssh-agent
supports connecting to Private DNS Names or a Route 53 alias. It
does not support Endpoint-Specific Public DNS Hostnames. See
How to Invoke a Private API for details on these options.
To restrict access from inside your VPC to the iam-ssh-agent
backend, you can
customise the API Gateway Resource Policy (ensure you redeploy the
API after any changes) or set a VPC Endpoint Policy.
See the AWS Private API troubleshooting guide for more tips on troubleshooting access to Private API Gateways.
This project can be used to grant Buildkite agents running on ECS permission to use ssh private keys to clone private source code repositories. The same pattern is also applicable to init system managed virtual machines on EC2, or Kubernetes pods on EKS.
To use the iam-ssh-agent
service in ECS Tasks, add a
buildkite/iam-ssh-agent
sidecar container to your task definition with a bind mount volume to expose the
unix domain socket bound by iam-ssh-agent
to the Buildkite agent container
which invokes ssh
to clone a repository.
To ensure the iam-ssh-agent
container has booted before attempting to clone,
the main container uses a container dependency DependsOn: [{"Condition": "HEALTHY", "ContainerName": "ssh-agent"}]
condition to wait for the ssh-agent to boot and become healthy before starting,
and the sidecar container defines a healthcheck which uses
busybox to verify the socket has been bound.
The example task definition below prints the keys the task has access
to, based on the task IAM role that was passed when scheduling the ECS task.
This task definition can be useful for diagnosing ssh
access issues and
confirming that your ECS Task Role has access to the keys you expect. Ensure you
override the Task Role when scheduling this task, otherwise it won't have access
to any keys.
SshTaskDefinition:
Type: AWS::ECS::TaskDefinition
Properties:
Family: ssh-example
ContainerDefinitions:
- Name: agent
EntryPoint:
- /bin/sh
- -c
Command:
- ssh-add -L; ssh -vvvvT git@github.com
Essential: true
Image: buildkite/agent:3
LogConfiguration:
LogDriver: awslogs
Options:
awslogs-region: !Ref AWS::Region
awslogs-group: /aws/ecs/ssh
awslogs-stream-prefix: ecs
Environment:
- Name: SSH_AUTH_SOCK
Value: /ssh/socket
DependsOn:
- Condition: HEALTHY
ContainerName: ssh-agent
MountPoints:
- ContainerPath: /ssh
SourceVolume: ssh-agent
- Name: ssh-agent
Command:
- /usr/bin/iam-ssh-agent
- daemon
- --bind-to=/ssh/socket
Essential: true
Image: buildkite/iam-ssh-agent:latest
Environment:
- Name: IAM_SSH_AGENT_BACKEND_URL
Value: !Ref YourIamSshAgentBackendUrlHere
LogConfiguration:
LogDriver: awslogs
Options:
awslogs-region: !Ref AWS::Region
awslogs-group: /aws/ecs/ssh
awslogs-stream-prefix: ecs
HealthCheck:
Command:
- /bin/busybox
- test
- -S
- /ssh/socket
MountPoints:
- ContainerPath: /ssh
SourceVolume: ssh-agent
Cpu: 256
Memory: 512
NetworkMode: awsvpc
ExecutionRoleArn: !ImportValue agent-scheduler-ECSTaskExecutionRoleArn
RequiresCompatibilities:
- FARGATE
Volumes:
- Name: ssh-agent
In my personal AWS Organization, the iam-ssh-agent
service is deployed to a
separate AWS account. My ECS task role has a policy to explicitly grant access
to the API Gateway:
ProjectRole:
Type: AWS::IAM::Role
Properties:
Path: /BuildkiteAgentTask/
RoleName: ProjectName
AssumeRolePolicyDocument:
Statement:
- Effect: Allow
Principal:
Service: [ecs-tasks.amazonaws.com]
Action: ['sts:AssumeRole']
Policies:
- PolicyName: SshAgentApi
PolicyDocument:
Statement:
- Effect: Allow
Action: execute-api:Invoke
Resource:
!Ref YourIamSshAgentApiGatewayArnHere
For more details on running Buildkite agents on-demand with ECS see my agent-scheduler project.