Skip to content
This repository was archived by the owner on Oct 12, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ 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](https://github.com/keithduncan/iam-ssh-agent/releases) or
[GitHub releases](https://github.com/buildkite/iam-ssh-agent/releases) or
using `cargo` to build the binary yourself. It is also published to Docker hub
as [keithduncan/iam-ssh-agent](https://hub.docker.com/r/keithduncan/iam-ssh-agent).

Expand Down Expand Up @@ -264,9 +264,9 @@ for more tips on troubleshooting access to Private API Gateways.

## Testing Access

I use this project to provide my [Buildkite](https://buildkite.com) agents
[running on ECS](https://github.com/keithduncan/buildkite-on-demand) access to
ssh keys for cloning private source code repositories. The same pattern is
This project can be used to grant [Buildkite](https://buildkite.com) agents
[running on ECS](https://github.com/buildkite/on-demand) 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.

Expand Down Expand Up @@ -380,5 +380,5 @@ ProjectRole:
```

For more details on running Buildkite agents on-demand with ECS see my
[agent-scheduler](https://github.com/keithduncan/buildkite-on-demand/tree/master/agent-scheduler)
[agent-scheduler](https://github.com/buildkite/on-demand/tree/master/agent-scheduler)
project.
2 changes: 1 addition & 1 deletion agent/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "ssh-agent compatible daemon that forwards list-keys and sign-data
version = "0.3.1"
authors = ["Keith Duncan <keith_duncan@me.com>"]
edition = "2018"
repository = "https://github.com/keithduncan/iam-ssh-agent"
repository = "https://github.com/buildkite/iam-ssh-agent"
license = "BSD-3-Clause"
keywords = [ "ssh", "ssh-agent", "aws" ]
categories = [ "command-line-utilities", "development-tools" ]
Expand Down
2 changes: 1 addition & 1 deletion agent/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# iam-ssh-agent agent

Binary replacement for `ssh-agent` that uses an [iam-ssh-agent](https://github.com/keithduncan/iam-ssh-agent)
Binary replacement for `ssh-agent` that uses an [iam-ssh-agent](https://github.com/buildkite/iam-ssh-agent)
backend for `list keys` and `sign data` operations.

The artifacts built from this crate are:
Expand Down
2 changes: 1 addition & 1 deletion service/README_SAR.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ repositories without granting access to the raw key material.
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.

See the [GitHub repository](https://github.com/keithduncan/iam-ssh-agent) for
See the [GitHub repository](https://github.com/buildkite/iam-ssh-agent) for
more documentation.
2 changes: 1 addition & 1 deletion service/ssh-agent-backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ssh-agent-backend",
"version": "0.1.0",
"description": "iam-ssh-agent backend lambda functions",
"repository": "https://github.com/keithduncan/iam-ssh-agent",
"repository": "https://github.com/buildkite/iam-ssh-agent",
"author": "Keith Duncan",
"license": "MIT",
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions service/template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ Metadata:
LicenseUrl: ../LICENSE
ReadmeUrl: README_SAR.md
Labels: ['ssh', 'ssh-agent', 'ssh-keys', 'authentication']
HomePageUrl: https://github.com/keithduncan/iam-ssh-agent
SourceCodeUrl: https://github.com/keithduncan/iam-ssh-agent
HomePageUrl: https://github.com/buildkite/iam-ssh-agent
SourceCodeUrl: https://github.com/buildkite/iam-ssh-agent

# More info about Globals: https://github.com/awslabs/serverless-application-model/blob/master/docs/globals.rst
Globals:
Expand Down