convection 0.2.18 → 0.2.19
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 +4 -4
- data/lib/convection/model/template/resource/aws_elasticache_cluster.rb +8 -0
- data/lib/convection/model/template/resource/aws_elasticache_replication_group.rb +8 -0
- data/lib/convection/model/template/resource/aws_iam_managed_policy.rb +1 -0
- data/lib/convection/model/template/resource/aws_iam_role.rb +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a7691882298457c14216a9a9263752a59986fd89
|
|
4
|
+
data.tar.gz: 649bb279293a6a105af1a551da8478874d4084b3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 386adaef1016a1f7b3571d921cd591b049284695d9b48b2cf2a8457069c8ec090c3c0f2a5569948a5e48bc38a3911e3107748b702dee03c6727c57ff7537b2f9
|
|
7
|
+
data.tar.gz: 1e9fffdbfa4eff38923cd3ba8797bb8431903efcd845e6ecaee6386634a8ef1768d7ab678e5ee9de97cf69c4752bdf56ec0dc040c6cf33229d52311b82f27eda
|
|
@@ -8,6 +8,8 @@ module Convection
|
|
|
8
8
|
# AWS::ElastiCache::CacheCluster
|
|
9
9
|
##
|
|
10
10
|
class ElastiCacheCluster < Resource
|
|
11
|
+
include Mixin::Taggable
|
|
12
|
+
|
|
11
13
|
type 'AWS::ElastiCache::CacheCluster', :elasticache_cache_cluster
|
|
12
14
|
property :auto_minor_version_upgrade, 'AutoMinorVersionUpgrade'
|
|
13
15
|
property :cache_node_type, 'CacheNodeType'
|
|
@@ -19,6 +21,12 @@ module Convection
|
|
|
19
21
|
property :engine_version, 'EngineVersion'
|
|
20
22
|
property :num_cache_nodes, 'NumCacheNodes'
|
|
21
23
|
property :vpc_security_group_ids, 'VpcSecurityGroupIds'
|
|
24
|
+
|
|
25
|
+
def render(*args)
|
|
26
|
+
super.tap do |resource|
|
|
27
|
+
render_tags(resource)
|
|
28
|
+
end
|
|
29
|
+
end
|
|
22
30
|
end
|
|
23
31
|
end
|
|
24
32
|
end
|
|
@@ -8,6 +8,8 @@ module Convection
|
|
|
8
8
|
# AWS::ElastiCache::ReplicationGroup
|
|
9
9
|
##
|
|
10
10
|
class ElastiCacheReplicationGroup < Resource
|
|
11
|
+
include Mixin::Taggable
|
|
12
|
+
|
|
11
13
|
type 'AWS::ElastiCache::ReplicationGroup', :elasticache_replication_group
|
|
12
14
|
property :auto_failover_enabled, 'AutomaticFailoverEnabled'
|
|
13
15
|
property :auto_minor_version_upgrade, 'AutoMinorVersionUpgrade'
|
|
@@ -27,6 +29,12 @@ module Convection
|
|
|
27
29
|
property :snapshot_arns, 'SnapshotArns', :type => :list
|
|
28
30
|
property :snapshot_retention_limit, 'SnapshotRetentionLimit'
|
|
29
31
|
property :snapshot_window, 'SnapshotWindow'
|
|
32
|
+
|
|
33
|
+
def render(*args)
|
|
34
|
+
super.tap do |resource|
|
|
35
|
+
render_tags(resource)
|
|
36
|
+
end
|
|
37
|
+
end
|
|
30
38
|
end
|
|
31
39
|
end
|
|
32
40
|
end
|
|
@@ -109,6 +109,8 @@ module Convection
|
|
|
109
109
|
type 'AWS::IAM::Role'
|
|
110
110
|
property :path, 'Path'
|
|
111
111
|
property :policies, 'Policies', :type => :list
|
|
112
|
+
property :managed_policy_arn, 'ManagedPolicyArns', :type => :list
|
|
113
|
+
alias managed_policy managed_policy_arn
|
|
112
114
|
|
|
113
115
|
attr_accessor :trust_relationship
|
|
114
116
|
attr_reader :instance_profile
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: convection
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.19
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- John Manero
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-04-
|
|
11
|
+
date: 2016-04-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk
|