|
|
|
|
@ -1,54 +1,43 @@
|
|
|
|
|
# Class: profiles::puppet::autosign
|
|
|
|
|
# profiles::puppet::autosign
|
|
|
|
|
#
|
|
|
|
|
# This class manages an autosign script for the Puppet master.
|
|
|
|
|
# It sets up a Ruby script that automatically signs Puppet node requests
|
|
|
|
|
# originating from certain IP subnet ranges.
|
|
|
|
|
# This Puppet class provides automation for autosigning node certificates
|
|
|
|
|
# based on specified subnet ranges and domain patterns.
|
|
|
|
|
# It is useful in environments where nodes are dynamically provisioned and
|
|
|
|
|
# require automatic certificate signing without manual intervention.
|
|
|
|
|
#
|
|
|
|
|
# Parameters:
|
|
|
|
|
# - `subnet_ranges`: An array of IP subnet ranges for which to automatically
|
|
|
|
|
# sign certificate requests.
|
|
|
|
|
# - `subnet_ranges`: An array of IP subnet ranges in CIDR notation.
|
|
|
|
|
# Nodes with IP addresses within these ranges will have their
|
|
|
|
|
# certificates autosigned.
|
|
|
|
|
# Example: ['198.18.17.0/24']
|
|
|
|
|
#
|
|
|
|
|
# Actions:
|
|
|
|
|
# - Ensures the autosign script file is present and has the correct content and permissions.
|
|
|
|
|
# - `domains`: An array of domain patterns.
|
|
|
|
|
# Nodes with hostnames matching these patterns will have their
|
|
|
|
|
# certificates autosigned.
|
|
|
|
|
# Default: ['*.main.unkin.net']
|
|
|
|
|
# Example: ['*.main.unkin.net', '*.secondary.unkin.net']
|
|
|
|
|
#
|
|
|
|
|
# Usage:
|
|
|
|
|
# The class can be declared in a node definition or classified using an ENC or Hiera.
|
|
|
|
|
# Example:
|
|
|
|
|
# node 'puppet.example.com' {
|
|
|
|
|
# class { 'profiles::puppet::autosign':
|
|
|
|
|
# subnet_ranges => ['198.18.17.0/24', '10.0.0.0/8'],
|
|
|
|
|
# }
|
|
|
|
|
# }
|
|
|
|
|
#
|
|
|
|
|
# To include this class with custom parameters:
|
|
|
|
|
# class { 'profiles::puppet::autosign':
|
|
|
|
|
# subnet_ranges => ['198.18.17.0/24', '198.18.18.0/24'],
|
|
|
|
|
# domains => ['*.main.unkin.net', '*.dev.unkin.net'],
|
|
|
|
|
# }
|
|
|
|
|
#
|
|
|
|
|
# Requirements:
|
|
|
|
|
# - Puppet master must have access to the /opt/puppetlabs/bin directory.
|
|
|
|
|
# - The gem 'ipaddr' module must be installed on the Puppet master.
|
|
|
|
|
# - The puppet 'puppetlabs/stdlib' module must be installed on the Puppet master.
|
|
|
|
|
#
|
|
|
|
|
# Limitations:
|
|
|
|
|
# This is designed to work on Unix-like systems.
|
|
|
|
|
# Alternatively, configure subnet ranges and domains through Hiera.
|
|
|
|
|
class profiles::puppet::autosign (
|
|
|
|
|
Array[Stdlib::IP::Address::V4::CIDR] $subnet_ranges,
|
|
|
|
|
Array[String[1]] $domains,
|
|
|
|
|
) {
|
|
|
|
|
|
|
|
|
|
$script_content = @(END)
|
|
|
|
|
#!/usr/bin/env ruby
|
|
|
|
|
|
|
|
|
|
require 'yaml'
|
|
|
|
|
require 'ipaddr'
|
|
|
|
|
|
|
|
|
|
csr = YAML.load(STDIN.read)
|
|
|
|
|
networks = #{subnet_ranges}
|
|
|
|
|
|
|
|
|
|
ip = IPAddr.new(csr['facts']['networking']['ip'])
|
|
|
|
|
|
|
|
|
|
exit 1 unless networks.any? { |network| IPAddr.new(network).include?(ip) }
|
|
|
|
|
exit 0
|
|
|
|
|
END
|
|
|
|
|
|
|
|
|
|
file { '/opt/puppetlabs/bin/autosign.rb':
|
|
|
|
|
ensure => file,
|
|
|
|
|
content => $script_content,
|
|
|
|
|
mode => '0755',
|
|
|
|
|
# Manage the autosign.conf file using the template
|
|
|
|
|
file { '/etc/puppetlabs/puppet/autosign.conf':
|
|
|
|
|
ensure => 'file',
|
|
|
|
|
content => template('profiles/puppet/autosign/autosign.conf.erb'),
|
|
|
|
|
owner => 'puppet',
|
|
|
|
|
group => 'puppet',
|
|
|
|
|
mode => '0644',
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|