cloud_former 0.5.1 → 0.5.2

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: baee3d2fb7fd5cd5764928dbc1ffa380260d6cbb
4
- data.tar.gz: 5486fa3e50f83d11103c959813c0b88f2341ebfb
3
+ metadata.gz: 79da61bb18a00596eb4ed7fe5ff306c7b3efedcd
4
+ data.tar.gz: 90005d789c1898d23c3add3b28bd6fe011eeaf0f
5
5
  SHA512:
6
- metadata.gz: 450c00c808907d6e7b6d4398b13782f22aa614cc073bf3c4f373531f7532db0ad54ea3bcaacd69009214f5d52a5a9cb5f614eccee0bce77e93d9996c09357e79
7
- data.tar.gz: 96dea3caa49659f4b7d41ad8b996029e8e1eab0cf8d3a47c0d3ed184ccfe5c722e8accf9564f0d689cb2856019d3fe9fdeb453ac5fad38c1be95c7cc84648bdf
6
+ metadata.gz: a6618bfbe74139f3b4dcfa41f7e90646f2aa825d02ab30020ca634af03b8c4376d4ac63a160527fd5a9f4bd857565af0ef80ccee7590b11cbe58f6f01c33612c
7
+ data.tar.gz: 08aff3f8c6413fca029ec90d5881ea3606f79bf1608cf351f125b4abb7bee58e683b6033265eca2fa9837f54912393b481df94b7e75de71776e1c0a310a5568b
@@ -0,0 +1,11 @@
1
+ # http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html
2
+ module CloudFormer
3
+ module Lambda
4
+ class Code < ResourceProperty
5
+ aws_attribute :s3_bucket, type: String
6
+ aws_attribute :s3_key, type: String
7
+ aws_attribute :s3_object_version, type: String
8
+ aws_attribute :zip_file, type: String
9
+ end
10
+ end
11
+ end
@@ -1,3 +1,3 @@
1
1
  module CloudFormer
2
- VERSION = '0.5.1'
2
+ VERSION = '0.5.2'
3
3
  end
data/lib/cloud_former.rb CHANGED
@@ -177,6 +177,7 @@ module CloudFormer
177
177
  end
178
178
 
179
179
  module Lambda
180
+ autoload :Code, 'cloud_former/resource_properties/lambda/code'
180
181
  autoload :EventSourceMapping, 'cloud_former/resources/lambda/event_source_mapping'
181
182
  autoload :Function, 'cloud_former/resources/lambda/function'
182
183
  autoload :Permission, 'cloud_former/resources/lambda/permission'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloud_former
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aubrey Holland
@@ -158,6 +158,7 @@ files:
158
158
  - lib/cloud_former/resource_properties/elastic_load_balancing/listener.rb
159
159
  - lib/cloud_former/resource_properties/elastic_load_balancing/policy.rb
160
160
  - lib/cloud_former/resource_properties/iam/iam_policy.rb
161
+ - lib/cloud_former/resource_properties/lambda/code.rb
161
162
  - lib/cloud_former/resource_properties/rds/security_group_rule.rb
162
163
  - lib/cloud_former/resource_properties/redshift/parameter.rb
163
164
  - lib/cloud_former/resource_properties/resource_property.rb