# frozen_string_literal: true require 'puppet' Facter.add('consul_node_token') do setcode do token_file = '/root/.config/consul_node_token' begin File.read(token_file).strip rescue StandardError nil end end end