vagrant-awsinfo 0.0.2 → 0.0.3
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 +6 -6
- data/lib/vagrant-awsinfo/command.rb +1 -1
- data/lib/vagrant-awsinfo/version.rb +1 -1
- metadata +2 -2
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -1,24 +1,24 @@
|
|
1
|
-
# vagrant
|
1
|
+
# vagrant awsinfo plugin
|
2
2
|
|
3
3
|
This plug in helps you get some metadata from an Vagrant machine provisioned with the AWS provider
|
4
4
|
|
5
|
-
This is useful when you use want to find out the external IP of the instance you just provisioned
|
5
|
+
This is useful when you use want to find out the external IP, instanceID, or username of the instance you just provisioned
|
6
6
|
|
7
7
|
|
8
8
|
## Installing
|
9
9
|
|
10
|
-
```vagrant plugin install vagrant-
|
10
|
+
```vagrant plugin install vagrant-awsinfo```
|
11
11
|
|
12
12
|
|
13
13
|
## Querying
|
14
14
|
|
15
|
-
The `vagrant
|
15
|
+
The `vagrant awsinfo` command is provided by this plugin.
|
16
16
|
|
17
17
|
Examples:
|
18
18
|
|
19
19
|
```
|
20
|
-
% vagrant
|
21
|
-
{
|
20
|
+
% vagrant awsinfo
|
21
|
+
{:host=>"ec2-xxx-xxx-xxx-xxxx.compute-1.amazonaws.com", :ssh_port=>22, :username=>"root", :instance_id=>"i-3188a75e", :state=>"running"}
|
22
22
|
```
|
23
23
|
|
24
24
|
## Contributing
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-awsinfo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-04-
|
12
|
+
date: 2013-04-17 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: vagrant aws info querying plugin
|
15
15
|
email:
|