vagrant-aws-dns 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d803e83fcf98591c15b47bdd3be2dcea27de8328
4
- data.tar.gz: 7f37e731eb9d21d5f9cacb2ae55c5cfaec4e124c
3
+ metadata.gz: 23b18a94636d2584b680393fc40e08e3a372008c
4
+ data.tar.gz: 2ea3bb8f2b91767d0b3f0ff738e09e2313cf6548
5
5
  SHA512:
6
- metadata.gz: 30953b9b2964fd51cdbd0868a551d5b74f89b928c9bc1161fbb9b89d84811001e5373b040b5fa5fd4e492370a4dc74c12f09e1ba95a9f760f8ac5880961b6193
7
- data.tar.gz: a614aca6162713bbb1b35ebb4706b557346a8add91ac17877c6973505dce8fffe399f697f82ec35f1bead03063f065d110cd01d7ec81eea08fb4144026b3b16c
6
+ metadata.gz: 18a4d9ee86b754ac489bc5afb4a321d4a262b20e5a8279d5dcc138ee722a5dd859776c42a69369460cd8e920c0ed87747c21a1b8c4ae74ce08fe67dc203b73fb
7
+ data.tar.gz: f8cb31bfd4723793e1ec6064fc030ae97bfbbbdc2807306d4867d323d219c80232caf9f4d6a20ee125140014de4105fd101cea64e7ff0eadb1c2b77136667466
data/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # vagrant-aws-dns
2
2
 
3
- `vagrant-aws-dns` is a Vagrant plugin that allows you to set up route53 records.
3
+ [![Gem Version](https://badge.fury.io/rb/vagrant-aws-dns.svg)](https://badge.fury.io/rb/vagrant-aws-dns) [![Dependency Status](https://gemnasium.com/nasskach/vagrant-aws-dns.svg)](https://gemnasium.com/nasskach/vagrant-aws-dns) [![Code Climate](https://codeclimate.com/github/nasskach/vagrant-aws-dns/badges/gpa.svg)](https://codeclimate.com/github/nasskach/vagrant-aws-dns)
4
+
5
+ `vagrant-aws-dns` is a Vagrant plugin that allows you to set up route53 records for instances created using vagrant-aws provider.
4
6
 
5
7
  ## Behaviors
6
8
 
@@ -31,7 +33,7 @@ Vagrant.configure("2") do |config|
31
33
  override.ssh.private_key_path = "PATH TO YOUR PRIVATE KEY"
32
34
 
33
35
  override.dns.hosted_zone_id = 'HOSTED ZONE ID'
34
- override.dns.record_sets = [['subdomain1.domain.com', 'A', '4.3.2.1'], ['subdomain1.domain.com', 'A']]
36
+ override.dns.record_sets = [['subdomain1.domain.com', 'A', '4.3.2.1'], ['subdomain2.domain.com', 'A']]
35
37
  end
36
38
  ```
37
39
 
@@ -41,13 +43,17 @@ Vagrant.configure("2") do |config|
41
43
 
42
44
  * `['subdomain.domain.com', 'A']` - This will set a record of type `subdomain.domain.com. A <public_ip>`, the <public_ip> is auto detected.
43
45
  * `['subdomain.domain.com', 'A', '4.3.2.1']` - This will set a record of type `subdomain.domain.com. A 4.3.2.1`.
44
- * `['subdomain1.domain.com', 'CNAME', 'domain2.com']` - This will set a record of type `subdomain1.domain.com. CNAME domain2.com.`.
46
+ * `['subdomain.domain1.com', 'CNAME', 'domain2.com']` - This will set a record of type `subdomain.domain1.com. CNAME domain2.com.`.
45
47
 
46
48
  ## FAQ
47
49
 
48
50
  * Why this plugin is not named `vagrant-aws-route53` ?
51
+
49
52
  > Unfortunately, that name was already taken by another plugin of the same kind.
53
+
54
+
50
55
  * So why develop a new one?
56
+
51
57
  > There are several reasons for this: use of new AWS SDK, support of multiple records, support of deleting records on machine halt
52
58
  or destory.
53
59
 
@@ -1,5 +1,5 @@
1
1
  module Vagrant
2
2
  module AwsDns
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ["Nassim Kacha"]
10
10
  spec.email = ["nassim.kacha@rea-group.com"]
11
11
 
12
- spec.summary = %q{A Vagrant plugin that allows you to set up route53 records.}
12
+ spec.summary = %q{A Vagrant plugin that allows you to set up route53 records for instances created using vagrant-aws provider.}
13
13
  spec.description = spec.summary
14
14
  spec.homepage = "https://github.com/nasskach/vagrant-aws-dns"
15
15
  spec.license = "MIT"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-aws-dns
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nassim Kacha
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-01-08 00:00:00.000000000 Z
11
+ date: 2016-01-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk
@@ -52,7 +52,8 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '10.0'
55
- description: A Vagrant plugin that allows you to set up route53 records.
55
+ description: A Vagrant plugin that allows you to set up route53 records for instances
56
+ created using vagrant-aws provider.
56
57
  email:
57
58
  - nassim.kacha@rea-group.com
58
59
  executables: []
@@ -97,5 +98,6 @@ rubyforge_project:
97
98
  rubygems_version: 2.5.1
98
99
  signing_key:
99
100
  specification_version: 4
100
- summary: A Vagrant plugin that allows you to set up route53 records.
101
+ summary: A Vagrant plugin that allows you to set up route53 records for instances
102
+ created using vagrant-aws provider.
101
103
  test_files: []