Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 1.03 KB

leapp.md

File metadata and controls

35 lines (23 loc) · 1.03 KB

Leapp

https://docs.leapp.cloud

Tool for faciliating access to AWS resources.

Installation

If installing the CLI (leapp-cli) and hit this underlying dependency error (mach-o file, but is an incompatible architecture (have 'arm64', file, need 'x86_64)), try running:

npm install -g @noovolari/leapp-cli

per somewhat buried docs

Handy commands

Open session in web console

leapp session open-web-console --sessionId $(leapp session list -x | grep SESSION_NAME | awk '{print $1}')

Start session

leapp session start --sessionId $(leapp session list -x | grep SESSION_NAME | awk '{print $1}')

Useful to add these as aliases

alias leapp-SESSION_NAME="leapp session start --sessionId $(leapp session list -x | SESSION_NAME | awk '{print $1}')"
alias leapp-SESSION_NAME-console="leapp session open-web-console --sessionId $(leapp session list -x | grep SESSION_NAME | awk '{print $1}')"