Beam me up Ferris!
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.
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
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
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
A few useful Beam commands:
bash
$ beam
bash
$ beam list --format names
host1.example.com
host2.example.com
bash
$ beam connect server.example.com
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.
AND
. With the term src main
, skim
will search
for items that match both src
and main
.|
means OR
(note the spaces around |
). With the term .md$ |
.markdown$
, skim
will search for items ends with either .md
or
.markdown
.OR
has higher precedence. So readme .md$ | .markdown$
is grouped into
readme AND (.md$ OR .markdown$)
.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