Skip to content

Commit 99b4e6b

Browse files
author
Alex Schultz
committed
fixing missing variables
1 parent 307b222 commit 99b4e6b

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

manifests/filter/container.pp

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,19 @@
7575
# String. The password for the particular application key in the keystore.
7676
# Defaults to <tt>undef</tt>
7777
#
78+
# [*content_body_read_limit*]
79+
# Integer. Maximum size ofr request content in bytes
80+
# Defaults to <tt>undef</tt>
81+
#
82+
# [*jmx_reset_time*]
83+
# Integer. The number of seconds the JMX reporting service keeps
84+
# data. The data will be reset after this amount of time.
85+
# Defaults to <tt>undef</tt>
86+
#
87+
# [*client_request_logging*]
88+
# Bool. Logs communication between repose and the end service
89+
# Defaults to <tt>false</tt>
90+
#
7891
# [*http_port*]
7992
# DEPRECATED. This attribute is deprecated and will be ignored. This has
8093
# moved to the system-model configuration.
@@ -95,10 +108,6 @@
95108
# DEPRECATED. This attribute is deprecated and moved to the
96109
# http-connection-pool configuration.
97110
#
98-
# [*client_request_logging*]
99-
# DEPRECATED. Bool. Log the client request
100-
# Defaults to <tt>false</tt>
101-
#
102111
# === Examples
103112
#
104113
# class { 'repose::filter::container':
@@ -129,13 +138,14 @@
129138
$ssl_keystore_filename = undef,
130139
$ssl_keystore_password = undef,
131140
$ssl_key_password = undef,
141+
$content_body_read_limit = undef,
142+
$jmx_reset_time = undef,
132143
$client_request_logging = undef,
133144
$http_port = undef,
134145
$https_port = undef,
135146
$connection_timeout = undef,
136147
$read_timeout = undef,
137148
$proxy_thread_pool = undef,
138-
$client_request_logging = undef,
139149
) inherits repose::params {
140150

141151
### Validate parameters

0 commit comments

Comments
 (0)