Beam

Crates.io

Beam me up Ferris!

What is Beam?

Beam an interface on top of the Teleport CLI. It uses skim, a fuzzy finder written in Rust, to provide a nice interface for searching and filtering.

Table of Contents

Installation

Make sure that you have the Teleport CLI installed, before using Beam.

For installing you will have to install Rust. Rustup is the recommended way to do that.
You can install beam through running:

bash rustup default nightly && rustup update

bash cargo install beamcli

Configuration

Before using Beam you will have to configure the Teleport proxy.

bash $ beam config set --proxy teleport.example.com

If you want to use SSO as your authentication method, you can configure it as well:

bash $ beam config set --auth sso

Beam will automatically use the user, from which you are running the command, as the username for connecting to a host. To use a different user, you can use the --user flag, or configure a new default using the following command:

bash $ beam config set --username myuser

You can also specify a list of labels that will explicitly be shown. If you don't specify any, Beam will show all labels.

bash $ beam config set --label-whitelist environment application

Caching

By default Beam caches the list of nodes it receives from Teleport for 24 hours. To avoid using cache you can use the --clear-cache or -c flag: bash $ beam -c You can change the cache duration using the --cache-ttl flag. The following example will cache the list of nodes for 1 hour: bash $ beam config set --cache-ttl 3600

Usage

A few useful Beam commands:

  1. Opening a fuzzy finder view for selecting a host: bash $ beam
  2. Listing the names of all available nodes bash $ beam list --format names host1.example.com host2.example.com
  3. Directly connect to a host via its hostname bash $ beam connect server.example.com

Search Syntax

Beam uses skim under the hood for its fuzzy search. The syntax for searching is the same as for skim. See skim for more information.

| Token | Match type | Description | |----------|----------------------------|-----------------------------------| | text | fuzzy-match | items that match text | | ^music | prefix-exact-match | items that start with music | | .mp3$ | suffix-exact-match | items that end with .mp3 | | 'wild | exact-match (quoted) | items that include wild | | !fire | inverse-exact-match | items that do not include fire | | !.mp3$ | inverse-suffix-exact-match | items that do not end with .mp3 |

skim also supports the combination of tokens.

Adding completions to your shell

In order to add completions to your shell, you can use one of the following commands:

bash $ beam completions zsh > ~/.zfunc/_beam

bash $ sudo apt install bash-completions $ mkdir -p ~/.local/share/bash-completion/completions $ beam completions bash > ~/.local/share/bash-completion/completions/beam

bash $ mkdir -p ~/.config/fish/completions $ beam completions fish > ~/.config/fish/completions/beam.fish