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 +4 -4
- data/lib/cloud_former.rb +4 -3
- data/lib/cloud_former/resources/s3/bucket.rb +24 -12
- data/lib/cloud_former/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 80a08195185ccdbfc45c00697f02110f71233e8d
|
4
|
+
data.tar.gz: b988d7a3db961f892d3ba0fc9a1fb33cce5ee260
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d605b758191fa2645c41e688c7e6332c8d0dfe62fd8b5997e686988f1025296c5d166309ca9a527a4c9436dbc36dffa07ef66a13c07c10fb6f805f3b3be8d1fd
|
7
|
+
data.tar.gz: 42612ca1e922ce1448ee4b67ce26aa3390e9a5074478c9a5d20a90fbc7e9baa20421bd5757c2147a84818f046e5cfea2860319deabccabc646327eb748462d4e
|
data/lib/cloud_former.rb
CHANGED
@@ -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/
|
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 :
|
224
|
-
autoload :
|
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
|
8
|
+
aws_property(
|
9
|
+
:lifecycle_configuration,
|
9
10
|
embed: true,
|
10
|
-
type: LifecycleConfiguration
|
11
|
-
|
11
|
+
type: LifecycleConfiguration,
|
12
|
+
)
|
13
|
+
aws_property(
|
14
|
+
:logging_configuration,
|
12
15
|
embed: true,
|
13
|
-
type: LoggingConfiguration
|
14
|
-
|
16
|
+
type: LoggingConfiguration,
|
17
|
+
)
|
18
|
+
aws_property(
|
19
|
+
:notification_configuration,
|
15
20
|
embed: true,
|
16
|
-
type: NotificationConfiguration
|
17
|
-
|
21
|
+
type: NotificationConfiguration,
|
22
|
+
)
|
23
|
+
aws_property(
|
24
|
+
:tags,
|
18
25
|
embed: true,
|
19
26
|
list: true,
|
20
|
-
type: CloudFormation::ResourceTag
|
21
|
-
|
27
|
+
type: CloudFormation::ResourceTag,
|
28
|
+
)
|
29
|
+
aws_property(
|
30
|
+
:versioning_configuration,
|
22
31
|
embed: true,
|
23
|
-
type: VersioningConfiguration
|
24
|
-
|
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
|
data/lib/cloud_former/version.rb
CHANGED