Sha256: ad24613ca4d9533ece479e410dfd01c142863f7870a2a6456315e94518a72cbd

Contents?: true

Size: 1.32 KB

Versions: 18

Compression:

Stored size: 1.32 KB

Contents

# frozen_string_literal: true

require 'bolt/error'

# Parses common ways of referring to targets and returns an array of Targets.
#
# **NOTE:** Calling `get_targets` inside an `apply` block with a
# version 2 inventory creates a new Target object.
# `get_targets('all')` returns an empty array.
Puppet::Functions.create_function(:get_targets) do
  # @param names A pattern or array of patterns identifying a set of targets.
  # @return A list of unique Targets resolved from any target URIs and groups.
  # @example Resolve a group
  #   get_targets('group1')
  # @example Resolve a target URI
  #   get_targets('winrm://host2:54321')
  # @example Resolve array of groups and/or target URIs
  #   get_targets(['host1', 'group1', 'winrm://host2:54321'])
  # @example Resolve string consisting of a comma-separated list of groups and/or target URIs
  #   get_targets('host1,group1,winrm://host2:54321')
  # @example Run on localhost
  #   get_targets('localhost')
  dispatch :get_targets do
    param 'Boltlib::TargetSpec', :names
    return_type 'Array[Target]'
  end

  def get_targets(names)
    inventory = Puppet.lookup(:bolt_inventory)
    # Bolt executor not expected when invoked from apply block
    executor = Puppet.lookup(:bolt_executor) { nil }
    executor&.report_function_call(self.class.name)

    inventory.get_targets(names)
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
bolt-1.42.0 bolt-modules/boltlib/lib/puppet/functions/get_targets.rb
bolt-1.41.0 bolt-modules/boltlib/lib/puppet/functions/get_targets.rb
bolt-1.40.0 bolt-modules/boltlib/lib/puppet/functions/get_targets.rb
bolt-1.39.0 bolt-modules/boltlib/lib/puppet/functions/get_targets.rb
bolt-1.38.0 bolt-modules/boltlib/lib/puppet/functions/get_targets.rb
bolt-1.37.0 bolt-modules/boltlib/lib/puppet/functions/get_targets.rb
bolt-1.36.0 bolt-modules/boltlib/lib/puppet/functions/get_targets.rb
bolt-1.35.0 bolt-modules/boltlib/lib/puppet/functions/get_targets.rb
bolt-1.34.0 bolt-modules/boltlib/lib/puppet/functions/get_targets.rb
bolt-1.33.0 bolt-modules/boltlib/lib/puppet/functions/get_targets.rb
bolt-1.32.0 bolt-modules/boltlib/lib/puppet/functions/get_targets.rb
bolt-1.31.1 bolt-modules/boltlib/lib/puppet/functions/get_targets.rb
bolt-1.31.0 bolt-modules/boltlib/lib/puppet/functions/get_targets.rb
bolt-1.30.1 bolt-modules/boltlib/lib/puppet/functions/get_targets.rb
bolt-1.30.0 bolt-modules/boltlib/lib/puppet/functions/get_targets.rb
bolt-1.29.1 bolt-modules/boltlib/lib/puppet/functions/get_targets.rb
bolt-1.29.0 bolt-modules/boltlib/lib/puppet/functions/get_targets.rb
bolt-1.28.0 bolt-modules/boltlib/lib/puppet/functions/get_targets.rb