aws_csshx 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Changelog.md +4 -0
- data/README.md +15 -0
- data/bin/aws_csshx +1 -0
- data/lib/aws_csshx/application.rb +1 -1
- data/lib/aws_csshx/version.rb +1 -1
- metadata +1 -1
data/Changelog.md
CHANGED
data/README.md
CHANGED
@@ -6,3 +6,18 @@ This is a wrapper script for ClusterSSHX (csshx). It allows the user the abilit
|
|
6
6
|
|
7
7
|
gem install aws_csshx
|
8
8
|
|
9
|
+
### Configuration
|
10
|
+
|
11
|
+
The easist way to configure this gem is to add the following 4 lines to your _~/.csshrc_ (replace with your values):
|
12
|
+
aws_region = us-east-1
|
13
|
+
aws_access_key = AAAAAAAAAAAAAAAAAAAA
|
14
|
+
aws_secret_key = TaaaaaLNiYbbbbbJm6uuqphcccccXtZydddddDfd
|
15
|
+
ec2_private_key = /Users/elubow/.ssh/amazon.pem
|
16
|
+
|
17
|
+
|
18
|
+
### Examples
|
19
|
+
|
20
|
+
The most common use/case of _aws_csshx_ is to just ssh into a security group.
|
21
|
+
For instance, to SSH into the entire *utility* security group as *root*, do the following:
|
22
|
+
|
23
|
+
aws_csshx -g 'utility' -l root
|
data/bin/aws_csshx
CHANGED
data/lib/aws_csshx/version.rb
CHANGED