cloud_former 0.1.5 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1eb1cd96fa5c44890f10ac70b958e85804e26cd9
|
4
|
+
data.tar.gz: f09044371dd91761c510a42c3b189913b1f3cd4d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c81bb108cb3295d57a26ac84a84970fc157e7dc2c344c15ca15c37da18870e9f37e8167128a06280ce42bddb91526c55b5ce650affe85d5d7e36fe1819f4c276
|
7
|
+
data.tar.gz: 1636b6a0d5e3356add5a9766e37256aa51e0dc536f18fe3dd260ea44690734e9b9808d915fec9af178bb5e0e4c6e382f60f8347226915a685c8cc816794ce040
|
@@ -13,13 +13,14 @@ module CloudFormer
|
|
13
13
|
aws_property :max_size, required: true, type: String
|
14
14
|
aws_property :metrics_collection,
|
15
15
|
list: true,
|
16
|
+
embed: true,
|
16
17
|
type: AutoScaling::MetricsCollection
|
17
18
|
aws_property :min_size, required: true, type: String
|
18
19
|
aws_property :notification_configuration,
|
19
20
|
embed: true,
|
20
21
|
type: AutoScaling::NotificationConfiguration
|
21
22
|
aws_property :placement_group, type: String
|
22
|
-
aws_property :tags, list: true, type: AutoScaling::Tag
|
23
|
+
aws_property :tags, list: true, embed: true, type: AutoScaling::Tag
|
23
24
|
aws_property :termination_policies, list: true, type: String
|
24
25
|
aws_property :vpc_zone_identifier,
|
25
26
|
name: 'VPCZoneIdentifier',
|
@@ -4,8 +4,8 @@ module CloudFormer
|
|
4
4
|
class LaunchConfiguration < Resource
|
5
5
|
aws_property :associate_public_ip_address, type: Boolean
|
6
6
|
aws_property :block_device_mappings,
|
7
|
-
embed: true,
|
8
7
|
list: true,
|
8
|
+
embed: true,
|
9
9
|
type: BlockDeviceMapping
|
10
10
|
aws_property :ebs_optimized, type: Boolean
|
11
11
|
aws_property :iam_instance_profile, type: String
|
@@ -18,6 +18,7 @@ module CloudFormer
|
|
18
18
|
aws_property :ram_disk_id, type: String
|
19
19
|
aws_property :security_groups,
|
20
20
|
list: true,
|
21
|
+
embed: true,
|
21
22
|
type: EC2::SecurityGroup
|
22
23
|
aws_property :spot_price, type: String
|
23
24
|
aws_property :user_data, type: String
|
data/lib/cloud_former/version.rb
CHANGED