Skip to content

Commit 73ac14f

Browse files
committed
Rename of "ta" to "addon" and other fixes
* splunk::ta renamed to splunk::addon * splunk::addon::input marked as private * template syntax clean up * concat for addon input made conditional to prevent blank file
1 parent 65e31f8 commit 73ac14f

File tree

6 files changed

+84
-87
lines changed

6 files changed

+84
-87
lines changed

manifests/addon.pp

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
#
2+
# Defined type: splunk::addon
3+
#
4+
# This define sets up a TA (Technology Addon) for Splunk. It (optionally)
5+
# installed a package, and configures input forwarders in
6+
# $SPLUNK_HOME/etc/apps/<app name>/local/inputs.conf
7+
#
8+
# Examples
9+
#
10+
# splunk::addon { 'search':
11+
# package_manage => false,
12+
# }
13+
#
14+
# splunk::addon::input { 'monitor:///var/log/messages':
15+
# attributes => {
16+
# 'index' => 'server_t',
17+
# },
18+
# }
19+
#
20+
# Alternatively you can feed inputs directly into splunk::addon using the
21+
# inputs parameter (useful if you are configuring from Hiera)
22+
#
23+
#
24+
# splunk::addon { 'search':
25+
# package_manage => false,
26+
# inputs => {
27+
# 'monitor:///var/log/messages' => {
28+
# 'attributes' => {
29+
# 'index' => 'server_t',
30+
# }
31+
# }
32+
# }
33+
# }
34+
#
35+
define splunk::addon (
36+
$splunk_home = '/opt/splunkforwarder',
37+
$package_manage = true,
38+
$package_name = undef,
39+
$inputs = {},
40+
) {
41+
42+
43+
if ( $package_manage ) {
44+
validate_string($package_name)
45+
package { $package_name:
46+
ensure => installed,
47+
before => File["${splunk_home}/etc/apps/${name}/local"],
48+
}
49+
}
50+
51+
file { "${splunk_home}/etc/apps/${name}/local":
52+
ensure => directory,
53+
}
54+
55+
if $inputs {
56+
concat { "splunk::addon::inputs_${name}":
57+
path => "${splunk_home}/etc/apps/${name}/local/inputs.conf",
58+
require => File["${splunk_home}/etc/apps/${name}/local"]
59+
}
60+
61+
create_resources('splunk::addon::input', $inputs, {"addon" => $name })
62+
}
63+
64+
}
65+

manifests/addon/input.pp

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Private defined type callled by splunk::addon
2+
3+
define splunk::addon::input (
4+
$addon,
5+
$attributes={},
6+
) {
7+
8+
assert_private()
9+
10+
concat::fragment { "splunk::addon::input::${addon}::${name}:":
11+
target => "splunk::addon::inputs_${addon}",
12+
content => template('splunk/addon/_input.erb'),
13+
order => '10',
14+
}
15+
}
16+
17+

manifests/forwarder.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
}
8585

8686
# Declare addons
87-
create_resources('splunk::ta', $addons)
87+
create_resources('splunk::addon', $addons)
8888

8989
# Declare inputs and outputs specific to the forwarder profile
9090
create_resources( 'splunkforwarder_input',$forwarder_input)

manifests/ta.pp

-70
This file was deleted.

manifests/ta/input.pp

-13
This file was deleted.

templates/ta/_input.erb templates/addon/_input.erb

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
[<%= @name %>]
2-
<%
3-
@attributes.each do |key,val|
4-
-%>
2+
<% @attributes.each do |key,val| -%>
53
<%= key %>=<%= val %>
64
<% end -%>
75

0 commit comments

Comments
 (0)