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 +4 -4
- data/lib/cloud_former/resource_properties/lambda/code.rb +11 -0
- data/lib/cloud_former/version.rb +1 -1
- data/lib/cloud_former.rb +1 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 79da61bb18a00596eb4ed7fe5ff306c7b3efedcd
|
4
|
+
data.tar.gz: 90005d789c1898d23c3add3b28bd6fe011eeaf0f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
data/lib/cloud_former/version.rb
CHANGED
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.
|
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
|