Sha256: 0256750e11e21dfacc03c7e025877cd7970d9956b3011ced2047f5e5e64fa0d1

Contents?: true

Size: 1.18 KB

Versions: 3

Compression:

Stored size: 1.18 KB

Contents

class Lono::Cfn::Diff < Lono::Cfn::Base
  include Lono::AwsServices

  def run
    unless stack_exists?(@stack_name)
      puts "WARN: Cannot create a diff for the stack because the #{@stack_name} does not exists.".color(:yellow)
      return
    end

    if @options[:noop]
      puts "NOOP Generating CloudFormation source code diff..."
    else
      generate_all # from Base superclass. Generates the output lono teplates
      puts "Generating CloudFormation source code diff..."
      download_existing_cfn_template
      show_changes
    end
  end

  def download_existing_cfn_template
    resp = cfn.get_template(
      stack_name: @stack_name,
      template_stage: "Original"
    )
    resp.template_body
    IO.write(existing_template_path, resp.template_body)
  end

  def show_changes
    command = "#{diff_viewer} #{existing_template_path} #{new_cfn_template}"
    puts "Running: #{command}"
    system(command)
  end

  # for clarity
  def new_cfn_template
    @template_path
  end

  def diff_viewer
    return ENV['LONO_DIFF'] if ENV['LONO_DIFF']
    system("type colordiff > /dev/null") ? "colordiff" : "diff"
  end

  def existing_template_path
    "/tmp/existing_cfn_template.yml"
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
lono-5.1.1 lib/lono/cfn/diff.rb
lono-5.1.0 lib/lono/cfn/diff.rb
lono-5.0.1 lib/lono/cfn/diff.rb