Class: Lono::Template::Strategy::Dsl::Builder::Section::Resource

Inherits:
Base
  • Object
show all
Defined in:
lib/lono/template/strategy/dsl/builder/section/resource.rb,
lib/lono/template/strategy/dsl/builder/section/resource/property_mover.rb

Defined Under Namespace

Classes: PropertyMover

Constant Summary

Constants included from Fn

Fn::FUNCTIONS

Instance Method Summary collapse

Methods inherited from Base

#initialize

Methods included from Lono::Template::Strategy::Dsl::Builder::Stringify

#stringify!

Methods included from Helpers::TagsHelper

#dimensions, #tag_list, #tags

Methods included from Helpers::S3Helper

#file_s3_key, #s3_bucket

Methods included from Helpers::LookupHelper

#lookup_output

Methods included from AwsServices

#cfn, #ec2, #iam, #s3, #s3_presigner, #s3_resource, #sts

Methods included from AwsServices::Helper

#rollback_complete?, #testing_update?

Methods included from AwsServices::StackSet

#find_stack_set, #stack_set_exists?

Methods included from AwsServices::Stack

#find_stack, #stack_exists?

Methods included from Helpers::FileHelper

#content, #render_file, #render_path, #user_data, #user_data_script

Methods included from Helpers::CoreHelper

#setting, #stack_name

Methods included from Fn

#conditional_ref, define_methods, #fn, #fn_id, #get_att, #get_azs, included, #join, #ref, #sub

Constructor Details

This class inherits a constructor from Lono::Template::Strategy::Dsl::Builder::Section::Base

Instance Method Details

#standarize(definition) ⇒ Object

Type is the only required property: amzn.to/2x8W5aD



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/lono/template/strategy/dsl/builder/section/resource.rb', line 12

def standarize(definition)
  first, second, third, _ = definition
  if definition.size == 1 && first.is_a?(Hash) # long form
    first # pass through
  elsif definition.size == 2 && second.is_a?(Hash) # medium form
    logical_id, attributes = first, second
    attributes.delete(:properties) if attributes[:properties].blank?
    attributes.delete("Properties") if attributes["Properties"].blank?
    { logical_id => attributes }
  elsif definition.size == 2 && second.is_a?(String) # short form with no properties
    logical_id, type = first, second
    { logical_id => {
        Type: type
    }}
  elsif definition.size == 3 && (second.is_a?(String) || second.is_a?(NilClass)) # short form
    logical_id, type, properties = first, second, third
    resource = { logical_id => {
                   Type: type
                }}

    attributes = resource.values.first

    property_mover = PropertyMover.new(resource, logical_id, properties)
    property_mover.move!

    attributes["Properties"] = properties unless properties.empty?
    resource
  else # Dont understand this form
    raise "Invalid form provided. definition #{definition.inspect}"
  end
end

#templateObject



7
8
9
# File 'lib/lono/template/strategy/dsl/builder/section/resource.rb', line 7

def template
  camelize(standarize(@definition))
end