- Notifications
You must be signed in to change notification settings - Fork24
Cloud enhanced SSH client replacement with host auto-completion
buger/cloud-ssh
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Cloud enhanced SSH client replacement with host auto-completion.
In times of digital clouds, servers come and go, and you barely remember its names and addresses. This tiny tool provide fuzzy search (yeah like SublimeText) for your instances list, based on tags, security groups and names.
Official site:https://buger.github.io/cloud-ssh/
Automatic installation. Just run following code in your terminal
bash <(curl -# https://buger.github.io/cloud-ssh/install.sh)
Manual installation - download and unpack latest release:http://github.com/buger/cloud-ssh/releases
sh-3.2$ # Lets say i want connect to server called stage-matchingsh-3.2$ ./cloud-ssh leon@stamaFound config: /Users/buger/.ssh/cloud-ssh.yamlFound clound instance:Cloud: granify_ec2 Matched by: aws:autoscaling:groupName=stage-matching Addr: ec2-50-200-40-200.compute-1.amazonaws.comWelcome to Ubuntu 12.04 LTS (GNU/Linux 3.2.0-25-virtual x86_64)
If there are more then 1 server matching your query, it will ask you to choose one:
sh-3.2$ # I want to check one of my CouchBase serverssh-3.2$ ./cloud-ssh ubuntu@couchFound config: /Users/buger/.ssh/cloud-ssh.yamlFound multiple instances:1) Cloud: granify_ec2 Matched by: Name=couchbase-02 Addr: ec2-50-200-40-201.compute-1.amazonaws.com2) Cloud: granify_ec2 Matched by: Name=couchbase-03 Addr: ec2-50-200-40-202.compute-1.amazonaws.com3) Cloud: granify_ec2 Matched by: Name=couchbase-04 Addr: ec2-50-200-40-203.compute-1.amazonaws.com4) Cloud: granify_ec2 Matched by: Name=couchbase-01 Addr: ec2-50-200-40-204.compute-1.amazonaws.com5) Cloud: granify_ec2 Matched by: Name=couchbase-05 Addr: ec2-50-200-40-205.compute-1.amazonaws.comChoose instance: 1Welcome to Ubuntu 12.04.4 LTS (GNU/Linux 3.2.0-58-virtual x86_64)
Nice, right? More over, cloud-ssh can act as full ssh replacement, since it just forward all calls to ssh command.
By default it checks your environment for AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY environment variables. If you want advanced configuration you can createcloud-ssh.yaml
in one of this directories: ./ (current), ~/.ssh/, /etc/
Note that you can define multiple clouds, per provider, if you have multi-datacenter setup or just different clients. Cloud name will be included into search term, so you can filter by it too!
Right now only 2 data cloud providers supported: Amazon EC2 and DigitalOcean.
Example configuration:
gran_ec2: # cloud name, used when searching provider: aws region: us-east-1 access_key: AAAAAAAAAAAAAAAAA secret_key: BBBBBBBBBBBBBBBBBBBBBBBBB default_user: ubuntugran_digital: provider: digital_ocean client_id: 111111111111111111 api_key: 22222222222222222
Totally yes! Actually it just SSH wrapper, so all SSH command options will work as before.
- Fork it
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Added some feature')
- Push to the branch (git push origin my-new-feature)
- Create new Pull Request
About
Cloud enhanced SSH client replacement with host auto-completion