summaryrefslogtreecommitdiff
path: root/puppet/modules/rsyslog/tests/multiple_hosts.pp
diff options
context:
space:
mode:
authorMicah <micah@leap.se>2016-07-12 16:46:28 -0400
committerMicah <micah@leap.se>2016-07-12 16:46:28 -0400
commit1e1e25286b64790141c9627f81b50f579b13b719 (patch)
tree0bddd4510b108b4f2e8a5abc0332972efeedd1da /puppet/modules/rsyslog/tests/multiple_hosts.pp
parent850a14b59444737f703686d0d1996bf09ab08e2b (diff)
git subrepo clone https://leap.se/git/puppet_rsyslog puppet/modules/rsyslog
subrepo: subdir: "puppet/modules/rsyslog" merged: "b8ef11c" upstream: origin: "https://leap.se/git/puppet_rsyslog" branch: "master" commit: "b8ef11c" git-subrepo: version: "0.3.0" origin: "https://github.com/ingydotnet/git-subrepo" commit: "1e79595" Change-Id: Iee06502c6df609f1a261410742360cec8694dab5
Diffstat (limited to 'puppet/modules/rsyslog/tests/multiple_hosts.pp')
-rw-r--r--puppet/modules/rsyslog/tests/multiple_hosts.pp17
1 files changed, 17 insertions, 0 deletions
diff --git a/puppet/modules/rsyslog/tests/multiple_hosts.pp b/puppet/modules/rsyslog/tests/multiple_hosts.pp
new file mode 100644
index 00000000..9e5a60ed
--- /dev/null
+++ b/puppet/modules/rsyslog/tests/multiple_hosts.pp
@@ -0,0 +1,17 @@
+class { 'rsyslog::client':
+ remote_servers => [
+ {
+ host => 'logs.example.org',
+ },
+ {
+ port => '55514',
+ },
+ {
+ host => 'logs.somewhere.com',
+ port => '555',
+ pattern => '*.log',
+ protocol => 'tcp',
+ format => 'RFC3164fmt',
+ },
+ ]
+}