cloud_former 0.5.3 → 0.5.4

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: a781b40e8d72080ba034eafdcaa08006cfb5d41b
4
- data.tar.gz: 6a3d52056ed810f39cb33d56994d0f64e4ac496d
3
+ metadata.gz: 80a08195185ccdbfc45c00697f02110f71233e8d
4
+ data.tar.gz: b988d7a3db961f892d3ba0fc9a1fb33cce5ee260
5
5
  SHA512:
6
- metadata.gz: a4a7be71b98faffc3e17511d254b867257082c58444d76321e109034d35ce6ae8539b1779b1502edf2cafd95562fbc7402a9bbaa87ed31821ead6a1114ac9f73
7
- data.tar.gz: 48f172dfeb8597685143de7eceabeef830eb80739cc9db00438a46c8e717e5e6f2703f2b5927b7945e6844e05dbd39a8648f8f9806458304ae23bc9d557bc92f
6
+ metadata.gz: d605b758191fa2645c41e688c7e6332c8d0dfe62fd8b5997e686988f1025296c5d166309ca9a527a4c9436dbc36dffa07ef66a13c07c10fb6f805f3b3be8d1fd
7
+ data.tar.gz: 42612ca1e922ce1448ee4b67ce26aa3390e9a5074478c9a5d20a90fbc7e9baa20421bd5757c2147a84818f046e5cfea2860319deabccabc646327eb748462d4e
@@ -215,13 +215,14 @@ module CloudFormer
215
215
  autoload :Bucket, 'cloud_former/resources/s3/bucket'
216
216
  autoload :CorsConfiguration, 'cloud_former/resource_properties/s3/cors_configuration'
217
217
  autoload :CorsRule, 'cloud_former/resource_properties/s3/cors_rule'
218
- autoload :LambdaNotificationConfiguration, 'cloud_former/resource_properties/s3/lambda_configuration'
218
+ autoload :LambdaNotificationConfiguration, 'cloud_former/resource_properties/s3/lambda_notification_configuration'
219
219
  autoload :LifecycleConfiguration, 'cloud_former/resource_properties/s3/lifecycle_configuration'
220
220
  autoload :LifecycleRule, 'cloud_former/resource_properties/s3/lifecycle_rule'
221
221
  autoload :LifecycleRuleTransition, 'cloud_former/resource_properties/s3/lifecycle_rule_transition'
222
222
  autoload :LoggingConfiguration, 'cloud_former/resource_properties/s3/logging_configuration'
223
- autoload :QueueNotificationConfiguration, 'cloud_former/resource_properties/s3/queue_configuration'
224
- autoload :TopicNotificationConfiguration, 'cloud_former/resource_properties/s3/topic_configuration'
223
+ autoload :NotificationConfiguration, 'cloud_former/resource_properties/s3/notification_configuration'
224
+ autoload :QueueNotificationConfiguration, 'cloud_former/resource_properties/s3/queue_notification_configuration'
225
+ autoload :TopicNotificationConfiguration, 'cloud_former/resource_properties/s3/topic_notification_configuration'
225
226
  autoload :VersioningConfiguration, 'cloud_former/resource_properties/s3/versioning_configuration'
226
227
  autoload :WebsiteConfiguration, 'cloud_former/resource_properties/s3/website_configuration'
227
228
  autoload(
@@ -5,25 +5,37 @@ module CloudFormer
5
5
  aws_property :access_control, type: String
6
6
  aws_property :bucket_name, type: String
7
7
  aws_property :cors_configuration, embed: true, type: CorsConfiguration
8
- aws_property :lifecycle_configuration,
8
+ aws_property(
9
+ :lifecycle_configuration,
9
10
  embed: true,
10
- type: LifecycleConfiguration
11
- aws_property :logging_configuration,
11
+ type: LifecycleConfiguration,
12
+ )
13
+ aws_property(
14
+ :logging_configuration,
12
15
  embed: true,
13
- type: LoggingConfiguration
14
- aws_property :notification_configuration,
16
+ type: LoggingConfiguration,
17
+ )
18
+ aws_property(
19
+ :notification_configuration,
15
20
  embed: true,
16
- type: NotificationConfiguration
17
- aws_property :tags,
21
+ type: NotificationConfiguration,
22
+ )
23
+ aws_property(
24
+ :tags,
18
25
  embed: true,
19
26
  list: true,
20
- type: CloudFormation::ResourceTag
21
- aws_property :versioning_configuration,
27
+ type: CloudFormation::ResourceTag,
28
+ )
29
+ aws_property(
30
+ :versioning_configuration,
22
31
  embed: true,
23
- type: VersioningConfiguration
24
- aws_property :website_configuration,
32
+ type: VersioningConfiguration,
33
+ )
34
+ aws_property(
35
+ :website_configuration,
25
36
  embed: true,
26
- type: WebsiteConfiguration
37
+ type: WebsiteConfiguration,
38
+ )
27
39
  end
28
40
  end
29
41
  end
@@ -1,3 +1,3 @@
1
1
  module CloudFormer
2
- VERSION = '0.5.3'
2
+ VERSION = '0.5.4'
3
3
  end
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.3
4
+ version: 0.5.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aubrey Holland