capistrano-aws 1.3.0 → 1.4.0

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
  SHA256:
3
- metadata.gz: cbec575475bb720dc8ca561f8e26c9cb2c1280bdc6535ae5bed01a709e506ab5
4
- data.tar.gz: 741650bc0b0945fbbbb4df0394babe26bcc3791c0784e28d547b6841f227c3ba
3
+ metadata.gz: 29b82f9002425c51b09550578165a8e679948813b31ff34a4d59aba11fb4a9ec
4
+ data.tar.gz: b696f84080c03513e8f5af9a0ef8dae50b1c4f4d616e75a26b0625722316765c
5
5
  SHA512:
6
- metadata.gz: 83eeab8d5f62b97858d0200cd50affcf0aad3c688cbcad5f2da06574ca1424b09c077e4cca6b28fb25fb96cf5e2e42e848cbbc5e700c94ecc5d0ec2f330a3773
7
- data.tar.gz: ecf4f0433304eca8f38b31cd6005001de6079a4654c69afc3800df076b747fd3b684fb0434d81c885174f7d117bb9a299769d145c5dd3485953979fe486f8278
6
+ metadata.gz: 96f64a0d7f01114ca27e32486b707e18dfa7ed9c096aff39f979bfd1d6b5f3a313e19c5ecdc7d89a3ec0cb505b14efb0b683fd5f42806e849bacc3ed47a0a2e3
7
+ data.tar.gz: d1c4c5a98810220985821d00674ad9f7deba0c3c0d1221286873711f0c534396de6d7631247794f8c306c60f0ab14859bab5194e3f5f6b03e05c7a69f242cdc8
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ 2024-03-14 - 1.4.0 - Support IPV6
2
+
3
+ * Support :ipv_6_address on aws_ec2_contact_point (Thanks @jksy!)
4
+
1
5
  2021-11-10 - 1.3.0 - Fix License!
2
6
 
3
7
  * Move from colorize to rainbow due to license incompatibiliy (Thanks @andyspix!)
data/README.md CHANGED
@@ -52,7 +52,7 @@ set :aws_ec2_extra_filters, []
52
52
  # Tag to be used as the instance name in the instances table (aws:ec2:instances task).
53
53
  set :aws_ec2_name_tag, 'Name'
54
54
 
55
- # How to contact the instance (:public_ip, :public_dns, :private_ip, :private_dns, :id).
55
+ # How to contact the instance (:public_ip, :public_dns, :private_ip, :private_dns, :id, :ipv_6_address).
56
56
  set :aws_ec2_contact_point, :public_ip
57
57
  ```
58
58
 
@@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
5
 
6
6
  Gem::Specification.new do |gem|
7
7
  gem.name = 'capistrano-aws'
8
- gem.version = '1.3.0'
8
+ gem.version = '1.4.0'
9
9
  gem.author = 'Fernando Carletti'
10
10
  gem.email = 'contact@fernandocarletti.net'
11
11
  gem.homepage = 'http://github.com/fernandocarletti/capistrano-aws'
@@ -48,6 +48,8 @@ module Capistrano
48
48
  instance.id
49
49
  when :public_dns
50
50
  instance.public_dns_name
51
+ when :ipv_6_address
52
+ "[#{instance.ipv_6_address}]"
51
53
  else
52
54
  instance.public_ip_address
53
55
  end
@@ -42,7 +42,7 @@ namespace :load do
42
42
  # Tag to be used as the instance name in the instances table (aws:ec2:instances task).
43
43
  set :aws_ec2_name_tag, 'Name'
44
44
 
45
- # How to contact the instance (:public_ip, :public_dns, :private_ip, :private_dns, :id).
45
+ # How to contact the instance (:public_ip, :public_dns, :private_ip, :private_dns, :id, :ipv_6_address).
46
46
  set :aws_ec2_contact_point, :public_ip
47
47
  end
48
48
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-aws
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fernando Carletti
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-11 00:00:00.000000000 Z
11
+ date: 2024-03-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capistrano
@@ -126,7 +126,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
126
126
  - !ruby/object:Gem::Version
127
127
  version: '0'
128
128
  requirements: []
129
- rubygems_version: 3.2.21
129
+ rubygems_version: 3.4.22
130
130
  signing_key:
131
131
  specification_version: 4
132
132
  summary: Integrates capistrano with AWS.