Sha256: bcb3973ab100cd2992385358f6fe49ab0ef87b286bc229b787e314edfac06a47

Contents?: true

Size: 1.08 KB

Versions: 71

Compression:

Stored size: 1.08 KB

Contents

# frozen_string_literal: true

require 'bolt/error'

# Sets a variable `{ key => value }` for a target.
#
# > **Note:** Not available in apply block
Puppet::Functions.create_function(:set_var) do
  # @param target The Target object to set the variable for. See {get_targets}.
  # @param key The key for the variable.
  # @param value The value of the variable.
  # @return The target with the updated feature
  # @example Set a variable on a target
  #   $target.set_var('ephemeral', true)
  dispatch :set_var do
    param 'Target', :target
    param 'String', :key
    param 'Data', :value
    return_type 'Target'
  end

  def set_var(target, key, value)
    unless Puppet[:tasks]
      raise Puppet::ParseErrorWithIssue
        .from_issue_and_stack(Bolt::PAL::Issues::PLAN_OPERATION_NOT_SUPPORTED_WHEN_COMPILING, action: 'set_var')
    end

    inventory = Puppet.lookup(:bolt_inventory)
    executor = Puppet.lookup(:bolt_executor)
    # Send Analytics Report
    executor.report_function_call(self.class.name)

    var_hash = { key => value }
    inventory.set_var(target, var_hash)

    target
  end
end

Version data entries

71 entries across 71 versions & 1 rubygems

Version Path
bolt-3.16.0 bolt-modules/boltlib/lib/puppet/functions/set_var.rb
bolt-3.15.0 bolt-modules/boltlib/lib/puppet/functions/set_var.rb
bolt-3.14.1 bolt-modules/boltlib/lib/puppet/functions/set_var.rb
bolt-3.13.0 bolt-modules/boltlib/lib/puppet/functions/set_var.rb
bolt-3.12.0 bolt-modules/boltlib/lib/puppet/functions/set_var.rb
bolt-3.11.0 bolt-modules/boltlib/lib/puppet/functions/set_var.rb
bolt-3.10.0 bolt-modules/boltlib/lib/puppet/functions/set_var.rb
bolt-3.9.2 bolt-modules/boltlib/lib/puppet/functions/set_var.rb
bolt-3.9.1 bolt-modules/boltlib/lib/puppet/functions/set_var.rb
bolt-3.9.0 bolt-modules/boltlib/lib/puppet/functions/set_var.rb
bolt-3.8.1 bolt-modules/boltlib/lib/puppet/functions/set_var.rb
bolt-3.8.0 bolt-modules/boltlib/lib/puppet/functions/set_var.rb
bolt-3.7.1 bolt-modules/boltlib/lib/puppet/functions/set_var.rb
bolt-3.7.0 bolt-modules/boltlib/lib/puppet/functions/set_var.rb
bolt-3.6.1 bolt-modules/boltlib/lib/puppet/functions/set_var.rb
bolt-3.6.0 bolt-modules/boltlib/lib/puppet/functions/set_var.rb
bolt-3.5.0 bolt-modules/boltlib/lib/puppet/functions/set_var.rb
bolt-3.4.0 bolt-modules/boltlib/lib/puppet/functions/set_var.rb
bolt-3.3.0 bolt-modules/boltlib/lib/puppet/functions/set_var.rb
bolt-3.1.0 bolt-modules/boltlib/lib/puppet/functions/set_var.rb