mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-01 05:49:09 -07:00
Initial commit
This commit is contained in:
commit
aebc1b03fd
4861 changed files with 812621 additions and 0 deletions
56
plugins/doc_fragments/rabbitmq.py
Normal file
56
plugins/doc_fragments/rabbitmq.py
Normal file
|
@ -0,0 +1,56 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright: (c) 2016, Jorge Rodriguez <jorge.rodriguez@tiriel.eu>
|
||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
|
||||
|
||||
class ModuleDocFragment(object):
|
||||
# Parameters for RabbitMQ modules
|
||||
DOCUMENTATION = r'''
|
||||
options:
|
||||
login_user:
|
||||
description:
|
||||
- RabbitMQ user for connection.
|
||||
type: str
|
||||
default: guest
|
||||
login_password:
|
||||
description:
|
||||
- RabbitMQ password for connection.
|
||||
type: str
|
||||
login_host:
|
||||
description:
|
||||
- RabbitMQ host for connection.
|
||||
type: str
|
||||
default: localhost
|
||||
login_port:
|
||||
description:
|
||||
- RabbitMQ management API port.
|
||||
type: str
|
||||
default: '15672'
|
||||
login_protocol:
|
||||
description:
|
||||
- RabbitMQ management API protocol.
|
||||
type: str
|
||||
choices: [ http , https ]
|
||||
default: http
|
||||
ca_cert:
|
||||
description:
|
||||
- CA certificate to verify SSL connection to management API.
|
||||
type: path
|
||||
aliases: [ cacert ]
|
||||
client_cert:
|
||||
description:
|
||||
- Client certificate to send on SSL connections to management API.
|
||||
type: path
|
||||
aliases: [ cert ]
|
||||
client_key:
|
||||
description:
|
||||
- Private key matching the client certificate.
|
||||
type: path
|
||||
aliases: [ key ]
|
||||
vhost:
|
||||
description:
|
||||
- RabbitMQ virtual host.
|
||||
type: str
|
||||
default: "/"
|
||||
'''
|
Loading…
Add table
Add a link
Reference in a new issue