capistrano3-autoscaling-deploy 1.5 → 1.6

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f87af3626f5137512f2622a61c6af16474b486c0
4
- data.tar.gz: 3af50b11040713f646b126a13094a8f4a5ff4a7b
3
+ metadata.gz: b79dac02957c6ad494d4e1476acc266f9aaa71ad
4
+ data.tar.gz: 88c0f026ee08d9882f742d07b6b57dbebde4e558
5
5
  SHA512:
6
- metadata.gz: e509d0c05b01bdcc4fd751d130dbbc965aaaa7f637ccae83afab008fccdb7ad88e3a6290cf56dcc966647be8b50bee2c0b7efe5ae95317adeafbd034aa336751
7
- data.tar.gz: 84223df370b1e5ab3f16f8685e4077e8890c4bfd90915ad8a64633eb4d148ae79bc01430109191f31d00ad0641dd66567f4beee5329134699af8718b0fd3925c
6
+ metadata.gz: 4ec1b602504796867baf0ae4bed90ee12cd08ecb5db4ae5002534b70447901df37656d7a523f36001d52249b970390e306bd053b15d924ac585a69e5337d4e85
7
+ data.tar.gz: 6ec9011c862962dc5c772afc1bbd9d038fc28a69ae6823782cce899c769cdd9483025693d438a30b90fa2a2b06fd76d40581ab3adc996ece933b97922d78866f
data/README.md CHANGED
@@ -48,7 +48,7 @@ set :aws_deploy_roles, [:app, :web, :db]
48
48
  set :aws_deploy_user, 'USER FOR SSH CONNECTION'
49
49
 
50
50
  # optional: defaults to 'public_dns_name'
51
- # select from ['public_ip', 'public_dns_name', 'private_ip_address', 'private_dns_name']
51
+ # select from ['public_ip_address', 'public_dns_name', 'private_ip_address', 'private_dns_name']
52
52
  set :aws_ip_type, 'public_dns_name'
53
53
  ```
54
54
 
@@ -1,5 +1,5 @@
1
1
  module Capistrano
2
2
  module AutoScalingDeploy
3
- VERSION = '1.5'
3
+ VERSION = '1.6'
4
4
  end
5
5
  end
@@ -1,7 +1,7 @@
1
1
  require 'aws-sdk'
2
2
 
3
3
  module AwsHelper
4
- IP_TYPES = %w(public_ip public_dns_name private_ip_address private_dns_name)
4
+ IP_TYPES = %w(public_ip_address public_dns_name private_ip_address private_dns_name)
5
5
 
6
6
  def get_instances(aws_region, aws_access_key_id, aws_secret_access_key, aws_autoscaling_group_name, aws_ip_type)
7
7
  aws_credentials = Aws::Credentials.new(aws_access_key_id, aws_secret_access_key)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano3-autoscaling-deploy
3
3
  version: !ruby/object:Gem::Version
4
- version: '1.5'
4
+ version: '1.6'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marcos Chicote
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-03-06 00:00:00.000000000 Z
11
+ date: 2017-04-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk