@@ -177,25 +177,130 @@ argument_specs:
177
177
description : " Whether to enable clustering"
178
178
type : " bool"
179
179
amq_broker_db_enabled :
180
- # line 48 of defaults/main.yml
180
+ # line 54 of defaults/main.yml
181
181
default : false
182
182
description : " Whether to enable JDBC persistence"
183
183
type : " bool"
184
- amq_broker_ssl_enabled :
184
+ amq_broker_cluster_user :
185
+ # line 46 of defaults/main.yml
186
+ default : " amq-cluster-user"
187
+ description : " Cluster username"
188
+ type : " str"
189
+ amq_broker_cluster_pass :
190
+ # line 47 of defaults/main.yml
191
+ default : " amq-cluster-pass"
192
+ description : " Cluster user password"
193
+ type : " str"
194
+ amq_broker_cluster_maxhops :
195
+ # line 48 of defaults/main.yml
196
+ default : 1
197
+ description : " Cluster max hops"
198
+ type : " int"
199
+ amq_broker_cluster_lb_policy :
200
+ # line 49 of defaults/main.yml
201
+ default : " ON_DEMAND"
202
+ description : " Policy for cluster load balancing"
203
+ type : " str"
204
+ amq_broker_replicate :
205
+ # line 50 of defaults/main.yml
206
+ default : false
207
+ description : " Enables replication"
208
+ type : " bool"
209
+ amq_broker_replicated :
185
210
# line 51 of defaults/main.yml
186
211
default : false
187
- description : " Whether to enable SSL listeners "
212
+ description : " Designate instance as replicated node "
188
213
type : " bool"
189
- amq_broker_ssl_keystore_path :
190
- # line 52 of defaults/main.yml
191
- default : " broker.ks"
192
- description : " Keystore path for SSL listener"
214
+ amq_broker_tls_enabled :
215
+ # line 57 of defaults/main.yml
216
+ default : false
217
+ description : " Whether to enable TLS"
218
+ type : " bool"
219
+ amq_broker_tls_keystore_path :
220
+ # line 58 of defaults/main.yml
221
+ default : " identity.ks"
222
+ description : " Keystore path for TLS connections"
193
223
type : " str"
194
- amq_broker_ssl_keystore_password :
195
- # line 53 of defaults/main.yml
224
+ amq_broker_tls_keystore_password :
225
+ # line 59 of defaults/main.yml
196
226
default : " changeme"
197
- description : " Keystore password for SSL listener"
227
+ description : " Keystore password for TLS connections"
228
+ type : " str"
229
+ amq_broker_tls_keystore_dest :
230
+ # line 60 of defaults/main.yml
231
+ default : " {{ amq_broker_dest }}/{{ amq_broker_instance_name }}/etc/identity.ks"
232
+ description : " Path for installation of truststore"
233
+ type : " str"
234
+ amq_broker_tls_mutual_authentication :
235
+ # line 63 of defaults/main.yml
236
+ default : false
237
+ description : " Whether to enable TLS mutual auth, requires TLS enabled"
238
+ type : " bool"
239
+ amq_broker_tls_truststore :
240
+ # line 64 of defaults/main.yml
241
+ default : None
242
+ description : " Truststore to use for TLS mutual authentication"
243
+ type : " str"
244
+ amq_broker_tls_truststore_password :
245
+ # line 65 of defaults/main.yml
246
+ default : None
247
+ description : " Password for truststore"
198
248
type : " str"
249
+ amq_broker_tls_truststore_dest :
250
+ # line 66 of defaults/main.yml
251
+ default : " {{ amq_broker_dest }}/{{ amq_broker_instance_name }}/etc/trust.ks"
252
+ description : " Path for installation of truststore"
253
+ type : " str"
254
+ amq_broker_nio_enabled :
255
+ # line 69 of defaults/main.yml
256
+ default : false
257
+ description : " Enable Native IO using libaio"
258
+ type : " bool"
259
+ amq_broker_shared_storage :
260
+ # line 72 of defaults/main.yml
261
+ default : false
262
+ description : " Use shared filesystem directory for storage"
263
+ type : " bool"
264
+ amq_broker_ports_offset_enabled :
265
+ # line 75 of defaults/main.yml
266
+ default : false
267
+ description : " Whether to enable port offset"
268
+ type : " bool"
269
+ amq_broker_ports_offset :
270
+ # line 76 of defaults/main.yml
271
+ default : 0
272
+ description : " Port offset for all default ports"
273
+ type : " int"
274
+ amq_broker_disable_destination_autocreate :
275
+ # line 79 of defaults/main.yml
276
+ default : true
277
+ description : " Disable automatic creation of destination"
278
+ type : " bool"
279
+ amq_broker_queues :
280
+ # line 80 of defaults/main.yml
281
+ default : " queue.in,queue.out"
282
+ description : " Queue names comma separated"
283
+ type : " str"
284
+ amq_broker_disable_amqp_protocol :
285
+ # line 83 of defaults/main.yml
286
+ default : false
287
+ description : " Whether to disable AMQP protocol"
288
+ type : " bool"
289
+ amq_broker_disable_hornetq_protocol :
290
+ # line 84 of defaults/main.yml
291
+ default : false
292
+ description : " Whether to disable HORNETQ protocol"
293
+ type : " bool"
294
+ amq_broker_disable_mqtt_protocol :
295
+ # line 85 of defaults/main.yml
296
+ default : false
297
+ description : " Whether to disable MQTT protocol"
298
+ type : " bool"
299
+ amq_broker_disable_stomp_protocol :
300
+ # line 86 of defaults/main.yml
301
+ default : false
302
+ description : " Whether to disable STOMP protocol"
303
+ type : " bool"
199
304
amq_broker_rhn_baseurl :
200
305
# line 8 of vars/main.yml
201
306
default : " https://access.redhat.com/jbossnetwork/restricted/softwareDownload.html?softwareId="
0 commit comments