2016-08-05 15:53:45 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
# This file is part of Ansible
|
|
|
|
#
|
|
|
|
# Ansible is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# Ansible is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
|
|
class ModuleDocFragment(object):
|
|
|
|
# Standard F5 documentation fragment
|
|
|
|
DOCUMENTATION = '''
|
|
|
|
options:
|
|
|
|
password:
|
|
|
|
description:
|
|
|
|
- The password for the user account used to connect to the BIG-IP.
|
2017-02-10 18:57:16 +00:00
|
|
|
This option can be omitted if the environment variable C(F5_PASSWORD)
|
|
|
|
is set.
|
2016-08-05 15:53:45 +00:00
|
|
|
required: true
|
|
|
|
server:
|
|
|
|
description:
|
2017-02-10 18:57:16 +00:00
|
|
|
- The BIG-IP host. This option can be omitted if the environment
|
|
|
|
variable C(F5_SERVER) is set.
|
2016-08-05 15:53:45 +00:00
|
|
|
required: true
|
|
|
|
server_port:
|
|
|
|
description:
|
2017-02-10 18:57:16 +00:00
|
|
|
- The BIG-IP server port. This option can be omitted if the environment
|
|
|
|
variable C(F5_SERVER_PORT) is set.
|
2016-08-05 15:53:45 +00:00
|
|
|
required: false
|
|
|
|
default: 443
|
|
|
|
version_added: 2.2
|
|
|
|
user:
|
|
|
|
description:
|
|
|
|
- The username to connect to the BIG-IP with. This user must have
|
2017-02-10 18:57:16 +00:00
|
|
|
administrative privileges on the device. This option can be omitted
|
|
|
|
if the environment variable C(F5_USER) is set.
|
2016-08-05 15:53:45 +00:00
|
|
|
required: true
|
|
|
|
validate_certs:
|
|
|
|
description:
|
|
|
|
- If C(no), SSL certificates will not be validated. This should only be
|
|
|
|
used on personally controlled sites using self-signed certificates.
|
2017-02-10 18:57:16 +00:00
|
|
|
This option can be omitted if the environment variable
|
|
|
|
C(F5_VALIDATE_CERTS) is set.
|
2016-08-05 15:53:45 +00:00
|
|
|
required: false
|
|
|
|
default: yes
|
|
|
|
choices:
|
|
|
|
- yes
|
|
|
|
- no
|
|
|
|
version_added: 2.0
|
2017-10-24 07:17:03 +00:00
|
|
|
notes:
|
|
|
|
- For more information on using Ansible to manage F5 Networks devices see U(https://www.ansible.com/ansible-f5).
|
2016-08-05 15:53:45 +00:00
|
|
|
'''
|