Sha256: a71ccffc01fb9567148779086d67c8a6c063800f42c4267733b476802d10d734

Contents?: true

Size: 1.3 KB

Versions: 53

Compression:

Stored size: 1.3 KB

Contents

module Terraspace::Terraform::RemoteState::Marker
  class Output
    include Terraspace::Util::Logging

    def initialize(mod, identifier, options={})
      @mod, @identifier, @options = mod, identifier, options
      @parent_name = @mod.name
      @child_name, @output_key = @identifier.split('.')
    end

    # Returns OutputProxy
    def build
      if valid?
        Terraspace::Dependency::Registry.register(@parent_name, @child_name)
      else
        warning
      end
      # MARKER for debugging. Only appears on 1st pass. Will not see unless changing Terraspace code for debugging.
      marker = "MARKER:terraform_output('#{@identifier}')"
      Terraspace::Terraform::RemoteState::OutputProxy.new(@mod, marker, @options)
    end

    def valid?
      self.class.stack_names.include?(@child_name)
    end

    def warning
      logger.warn "WARN: The #{@child_name} stack does not exist".color(:yellow)
      caller_line = caller.find { |l| l.include?('.tfvars') }
      return unless caller_line # specs dont have a tfvars file
      source_code = PrettyTracer.new(caller_line).source_code
      logger.info source_code
    end

    class << self
      extend Memoist
      # Marker::Output uses DirsConcern stack_names to check if stacks are valid
      include Terraspace::Compiler::DirsConcern
    end
  end
end

Version data entries

53 entries across 53 versions & 1 rubygems

Version Path
terraspace-1.0.6 lib/terraspace/terraform/remote_state/marker/output.rb
terraspace-1.0.5 lib/terraspace/terraform/remote_state/marker/output.rb
terraspace-1.0.4 lib/terraspace/terraform/remote_state/marker/output.rb
terraspace-1.0.3 lib/terraspace/terraform/remote_state/marker/output.rb
terraspace-1.0.2 lib/terraspace/terraform/remote_state/marker/output.rb
terraspace-1.0.1 lib/terraspace/terraform/remote_state/marker/output.rb
terraspace-1.0.0 lib/terraspace/terraform/remote_state/marker/output.rb
terraspace-0.7.2 lib/terraspace/terraform/remote_state/marker/output.rb
terraspace-0.7.1 lib/terraspace/terraform/remote_state/marker/output.rb
terraspace-0.7.0 lib/terraspace/terraform/remote_state/marker/output.rb
terraspace-0.6.23 lib/terraspace/terraform/remote_state/marker/output.rb
terraspace-0.6.22 lib/terraspace/terraform/remote_state/marker/output.rb
terraspace-0.6.21 lib/terraspace/terraform/remote_state/marker/output.rb
terraspace-0.6.20 lib/terraspace/terraform/remote_state/marker/output.rb
terraspace-0.6.19 lib/terraspace/terraform/remote_state/marker/output.rb
terraspace-0.6.18 lib/terraspace/terraform/remote_state/marker/output.rb
terraspace-0.6.17 lib/terraspace/terraform/remote_state/marker/output.rb
terraspace-0.6.16 lib/terraspace/terraform/remote_state/marker/output.rb
terraspace-0.6.15 lib/terraspace/terraform/remote_state/marker/output.rb
terraspace-0.6.13 lib/terraspace/terraform/remote_state/marker/output.rb