Class: InspecPlugins::Iggy::CloudFormation::Generate

Inherits:
Object
  • Object
show all
Defined in:
lib/inspec-iggy/cloudformation/generate.rb

Class Method Summary collapse

Class Method Details

.parse_generate(cfn_template) ⇒ Object

parse through the JSON and generate InSpec controls



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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# File 'lib/inspec-iggy/cloudformation/generate.rb', line 13

def self.parse_generate(cfn_template) # rubocop:disable Metrics/AbcSize, Metrics/MethodLength, Metrics/PerceivedComplexity
  template = InspecPlugins::Iggy::FileHelper.parse_json(cfn_template)
  absolutename = File.absolute_path(cfn_template)

  # InSpec controls generated
  generated_controls = []

  # iterate over the resources
  cfn_resources = template["Resources"]
  cfn_resources.keys.each do |cfn_res|
    # split out the last ::, these are all AWS
    cfn_resource = cfn_resources[cfn_res]["Type"].split("::").last
    # split camelcase and join with underscores
    cfn_res_type = "aws_" + cfn_resource.split(/(?=[A-Z])/).join("_").downcase

    # add translation layer
    if InspecPlugins::Iggy::InspecHelper::TRANSLATED_RESOURCES.key?(cfn_res_type)
      Inspec::Log.debug "CloudFormation::Generate.parse_generate cfn_res_type = #{cfn_res_type} #{InspecPlugins::Iggy::InspecHelper::TRANSLATED_RESOURCES[cfn_res_type]} TRANSLATED"
      cfn_res_type = InspecPlugins::Iggy::InspecHelper::TRANSLATED_RESOURCES[cfn_res_type]
    end

    # does this match an InSpec resource?
    if InspecPlugins::Iggy::InspecHelper.available_resources.include?(cfn_res_type)
      Inspec::Log.debug "CloudFormation::Generate.parse_generate cfn_res_type = #{cfn_res_type} MATCHED"

      # insert new control based off the resource's ID
      ctrl = Inspec::Control.new
      ctrl.id = "#{cfn_res_type}::#{cfn_res}"
      ctrl.title = "InSpec-Iggy #{cfn_res_type}::#{cfn_res}"
      ctrl.descriptions["default"] = "#{cfn_res_type}::#{cfn_res} from the source file #{absolutename}\nGenerated by InSpec-Iggy v#{InspecPlugins::Iggy::VERSION}"
      ctrl.impact = "1.0"

      describe = Inspec::Describe.new
      # describes the resource with the logical_resource_id as argument, replaced at inspec exec
      describe.qualifier.push([cfn_res_type, "resources[#{cfn_res}]"])

      # ensure the resource exists
      describe.add_test(nil, "exist", nil)

      # EC2 instances should be running
      describe.add_test(nil, "be_running", nil) if cfn_res_type.eql?("aws_ec2_instance")

      # if there's a match, see if there are matching InSpec properties
      inspec_properties = InspecPlugins::Iggy::InspecHelper.resource_properties(cfn_res_type, "aws")
      cfn_resources[cfn_res]["Properties"].keys.each do |attr|
        # insert '_' on the CamelCase to get camel_case
        attr_split = attr.split(/(?=[A-Z])/)
        property = attr_split.join("_").downcase
        if inspec_properties.member?(property)
          Inspec::Log.debug "CloudFormation::Generate.parse_generate #{cfn_res_type} inspec_property = #{property} MATCHED"
          value = cfn_resources[cfn_res]["Properties"][attr]
          if (value.is_a? Hash) || (value.is_a? Array)
            #  these get replaced at inspec exec
            if property.eql?("vpc_id") # rubocop:disable Metrics/BlockNesting
              vpc = cfn_resources[cfn_res]["Properties"][attr].values.first
              # https://github.com/inspec/inspec/issues/3173
              describe.add_test(property, "cmp", "resources[#{vpc}]") unless cfn_res_type.eql?("aws_route_table") # rubocop:disable Metrics/BlockNesting
              # AMI is a Ref into Parameters
            elsif property.eql?("image_id") # rubocop:disable Metrics/BlockNesting
              amiref = cfn_resources[cfn_res]["Properties"][attr].values.first
              ami = template["Parameters"][amiref]["Default"]
              describe.add_test(property, "cmp", ami)
            end
          else
            describe.add_test(property, "cmp", value)
          end
        else
          Inspec::Log.debug "CloudFormation::Generate.parse_generate #{cfn_res_type} inspec_property = #{property} SKIPPED"
        end
      end
      ctrl.add_test(describe)
      generated_controls.push(ctrl)
    else
      Inspec::Log.debug "CloudFormation::Generate.parse_generate cfn_res_type = #{cfn_res_type} SKIPPED"
    end
  end
  Inspec::Log.debug "CloudFormation::Generate.parse_generate generated_controls = #{generated_controls}"
  generated_controls
end