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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c69e408725ce4fac3bf3c2e14fbc4a97a1e8b2fd
4
- data.tar.gz: 20206c6acd59800813d2f2fc2e9ba981a8384c10
3
+ metadata.gz: a7691882298457c14216a9a9263752a59986fd89
4
+ data.tar.gz: 649bb279293a6a105af1a551da8478874d4084b3
5
5
  SHA512:
6
- metadata.gz: 90e0b1500d53f234ac3c56a0dcd537ffb442007042e51b87b8327b276deecb2896f199b0f422637bbb1862f7c7331e1b4c295d6590d90654ecff99db04939530
7
- data.tar.gz: 130d510dce400bdd47bffa72f0726e2ecfb057f8ef03fc5a5534f128f0c223f3a1d30b7ee56e407bb6c00c496d9218da5b7e9fac361b05897e6bf539bb5ca14e
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
@@ -12,6 +12,7 @@ module Convection
12
12
 
13
13
  type 'AWS::IAM::ManagedPolicy'
14
14
  property :path, 'Path'
15
+ property :description, 'Description'
15
16
  property :group, 'Groups', :type => :list
16
17
  property :role, 'Roles', :type => :list
17
18
  property :user, 'Users', :type => :list
@@ -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.18
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-12 00:00:00.000000000 Z
11
+ date: 2016-04-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk