Modules overview
You'll keep nearly all of your Puppet code in modules. Each module manages a specific task in your infrastructure, such as installing and configuring a piece of software. Modules serve as the basic building blocks of Puppet and are reusable and shareable.
Modules contain Puppet classes, defined types, tasks, task plans, functions, resource types and providers, and plug-ins such as custom types or facts. Modules must be installed in the Puppet modulepath. Puppet loads all content from every module in the modulepath, making this code available for use.
You can download and install modules from the Puppet Forge. The Forge contains thousands of modules written by Puppet developers and the open source community for a wide variety of use cases. Expect to write at least a few of your own modules to meet specific needs in your infrastructure.
If you're using Code Manager or r10k, you'll manage modules with a Puppetfile. For smaller, manually managed infrastructures
or proof of concept projects, you can install and manage modules with the puppet module
command. See
the related topic about installing modules for details.
The following video gives you an overview of modules:
Module structure
Modules have a specific directory structure that allows Puppet to find and load classes, defined types, facts, custom types and providers, functions, and tasks.
Each module subdirectory has a specific function, and not all directories are required. Use the following directory structure:
-
data/
- Contains data files specifying parameter defaults.
-
examples/
- Contains examples showing how to declare the module's classes and defined types.
-
facts.d/
- Contains external facts, which are an alternative to Ruby-based custom facts. These are synced to all agent nodes, so they can submit values for those facts to the primary Puppet server.
-
files/
- Contains static files, which managed nodes can download.
-
service.conf
- This file's
source => URL
ispuppet:///modules/my_module/service.conf
. Its contents can also be accessed with thefile
function, such ascontent => file('my_module/service.conf')
.
-
-
functions/
- Contains custom functions written in the Puppet language.
-
lib/
- Contains plug-ins, such as custom facts and custom resource types. These are used by both the primary Puppet server and the Puppet agent, and they are synced to all agent nodes in the environment on each Puppet run.
-
locales/
- Contains files relating to module localization into languages other than English.
-
manifests/
- Contains all of the manifests in the module.
-
plans/
- Contains Puppet task plans, which are sets of tasks that can be combined with other logic. Plans are written in the Puppet language.
-
readmes/
- The module's README localized into languages other than English.
-
spec/
- Contains spec tests for any plug-ins in the lib directory.
-
tasks/
- Contains Puppet tasks, which can be written in any programming language that can be read by the target node.
-
templates/
- Contains templates, which the module's manifests can use to generate content or variable values.
-
types/
- Contains resource type aliases.
Module names
Module names must match the expression: [a-z][a-z0-9_]*
. In other words, they can
contain only lowercase letters, numbers, and underscores, and begin with a lowercase
letter.
These restrictions are similar to those that apply
to class names, with the added restriction that module names cannot contain the
namespace separator (::
), because modules cannot be nested. Certain module names are
disallowed; see the list of reserved words and names.
Manifests
Manifests, contained in the module's manifests/
folder, each contain one class or defined
type.
The init.pp
manifest is the main class of a module and,
unlike other classes or defined types, it is referred to only by the name of the
module itself. For example, the class in init.pp
in the puppetlabs-motd
module is the mot
d class. You cannot name a class
init
.
All other classes or defined types names are composed of name
segments, separated from each other by a namespace separator, ::
The module short name, followed by the namespace separator.
Any
manifests/
subdirectories that the class or defined type is contained in, followed by a namespace separato.The manifest file name, without the extension.
manifests/
directory:Module name | Filepath to class or defined type | Class or defined type name |
---|---|---|
username-my_module
|
my_module/manifests/init.pp
|
my_module
|
username-my_module
|
my_module/manifests/other_class.pp
|
my_module::other_class
|
puppetlabs-apache
|
apache/manifests/security/rule_link.pp
|
apache::security::rule_link
|
puppetlabs-apache
|
apache/manifests/fastcgi/server.pp
|
apache::fastcgi::server
|
Files in modules
You can serve files from a module's files/
directory to agent nodes.
Download files to the agent by setting the file
resource's source
attribute to the puppet:///
URL for the
file. Alternately, you can access module files with the file
function.
puppet:///
URL:puppet:///<MODULE_DIRECTORY>/<MODULE_NAME>/<FILE_NAME>
For
example, given a file located in my_module/files/service.conf
, the URL is: puppet:///modules/my_module/service.conf
To
access files with the file
function, pass the reference <MODULE NAME>/<FILE NAME>
to
the function, which returns the content of the requested file from the module's
files/
directory. Puppet URLs work for both puppet agent
and puppet apply
; in either case they
retrieve the file from a module.To learn more about the
file
function,
see the function reference.
Templates in modules
You can use ERB or EPP templates in your module
to manage the content of configuration files. Templates combine code, data, and
literal text to produce a string output, which can be used as the content attribute
of a file
resource
or as a variable value. Templates are contained in the module's templates/
directory.
For ERB templates, which use Ruby, use the template
function. For EPP templates, which use the Puppet
language, use the epp
function. See the page about templates for
detailed information.
template
and epp
functions look up templates identified
by module and template name, passed as a string in parentheses: function('module_name/template_name.extension')
. For example:template('my_module/component.erb')
epp('my_module/component.epp')
Writing modules
Every Puppet user can expect to write at least some of their own modules. You must give your modules a specific directory structure and include correctly formatted metadata. Puppet Development Kit (PDK) provides tools for writing, validating, and testing modules.
PDK creates a complete module structure, class, defined type, and task templates, and configures a module testing framework. To test your modules, use PDK commands to run unit tests and to validate your module's metadata, syntax, and style. You can download and install PDK on any development machine; no Puppet installation is required. See the PDK documentation to get started.
For help getting started writing modules, see our beginner's guide to writing modules. For details on best practices and code style, see the Puppet Language style guide.