Version information
This version is compatible with:
- Puppet Enterprise 2018.1.x, 2017.3.x, 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
- Puppet >= 4.7.0 < 6.0.0
- , , , , , ,
Tasks:
- resource
Start using this module
Add this module to your Puppetfile:
mod 'puppetlabs-apply', '0.1.0'
Learn more about managing modules with a PuppetfileDocumentation
apply
Table of Contents
- Description
- Setup - The basics of getting started with apply
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
Description
The apply
module contains a task to apply a single arbitrary Puppet resource. This makes it easy to take advantage of existing Puppet content while running tasks.
Setup
The Puppet agent package must be installed on all target nodes. However, the Puppet agent service doesn't need to be running. Any external resource types will need to be present on the target node (either by installing the module or through pluginsync) before they can be used.
Usage
To run the apply::resource
task with bolt
bolt task run apply::resource --nodes $TARGETNODES type=package title=vim params='{"ensure": "present"}'
This task can also be run from a bolt plan:
plan install_vim(TargetSpec $nodes) {
run_task(apply::resource, $nodes, type => 'package', title => 'vim', params => {'ensure' => 'present'})
}
Reference
Tasks
apply::resource
Parameters
type String[1]
:
The type of resource to apply
title String[1]
:
The title of the resource to apply
params Hash[String[1], Data]
:
A map of parameter names and values to apply
Output
On success, the result will contain the following keys:
type
: The type of the resource that was applied
title
: The title of the resource that was applied
changed
: A boolean indicating whether the resource was modified by the task
changes
: An array of change event, each containing property
, previous_value
, desired_value
, message
representing a single property changed on the resource. Absent if the resource was not changed.
On failure, the result will contain the previous keys and additionally:
_error
: An error object describing the failure
failures
: An array of failure events, each containing property
, previous_value
, desired_value
, message
representing a single property that failed on the resource.
Limitations
This is a pre 1.0.0
release and future versions may have breaking changes.
What are tasks?
Modules can contain tasks that take action outside of a desired state managed by Puppet. It’s perfect for troubleshooting or deploying one-off changes, distributing scripts to run across your infrastructure, or automating changes that need to happen in a particular order as part of an application deployment.