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: 94abce18146a1ec6925ce84ec75ec794d4d15e97
4
- data.tar.gz: a5226e624ccc53e65da2a0a0fc354f0babaf7a71
3
+ metadata.gz: 1eb1cd96fa5c44890f10ac70b958e85804e26cd9
4
+ data.tar.gz: f09044371dd91761c510a42c3b189913b1f3cd4d
5
5
  SHA512:
6
- metadata.gz: 2087f3025a8bef501b07ea2fba98fd4582723d9eb5ee6cb2efac3da554491c207aa177de3b472425f6bc02b019fc0234d0c1fdce550b4ae81811b26281b1ffd4
7
- data.tar.gz: 1021878df61d69a1c0caea17c94c3eb28e47a2518389e0af62293ab93eba44cfc77b723fce0900e369622a7fc8e8d06f4a58b3a782526d5882861c75e2ad609e
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
@@ -1,3 +1,3 @@
1
1
  module CloudFormer
2
- VERSION = '0.1.5'
2
+ VERSION = '0.1.6'
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.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aubrey Holland