mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
Adds bigip_ucs_fetch module (#35113)
This module can be used to download UCS files from a BIG-IP
This commit is contained in:
parent
2cd8a3a9a3
commit
585d8cf4c7
8 changed files with 779 additions and 33 deletions
|
@ -51,13 +51,70 @@ options:
|
|||
You can omit this option if the environment variable
|
||||
C(F5_VALIDATE_CERTS) is set.
|
||||
default: yes
|
||||
choices:
|
||||
- yes
|
||||
- no
|
||||
type: bool
|
||||
version_added: 2.0
|
||||
provider:
|
||||
description:
|
||||
- A dict object containing connection details.
|
||||
default: null
|
||||
version_added: 2.5
|
||||
suboptions:
|
||||
password:
|
||||
description:
|
||||
- The password for the user account used to connect to the BIG-IP.
|
||||
You can omit this option if the environment variable C(F5_PASSWORD)
|
||||
is set.
|
||||
required: true
|
||||
aliases: ['pass', 'pwd']
|
||||
server:
|
||||
description:
|
||||
- The BIG-IP host. You can omit this option if the environment
|
||||
variable C(F5_SERVER) is set.
|
||||
required: true
|
||||
server_port:
|
||||
description:
|
||||
- The BIG-IP server port. You can omit this option if the environment
|
||||
variable C(F5_SERVER_PORT) is set.
|
||||
default: 443
|
||||
user:
|
||||
description:
|
||||
- The username to connect to the BIG-IP with. This user must have
|
||||
administrative privileges on the device. You can omit this option
|
||||
if the environment variable C(F5_USER) is set.
|
||||
required: true
|
||||
validate_certs:
|
||||
description:
|
||||
- If C(no), SSL certificates will not be validated. Use this only
|
||||
on personally controlled sites using self-signed certificates.
|
||||
You can omit this option if the environment variable
|
||||
C(F5_VALIDATE_CERTS) is set.
|
||||
default: yes
|
||||
type: bool
|
||||
timeout:
|
||||
description:
|
||||
- Specifies the timeout in seconds for communicating with the network device
|
||||
for either connecting or sending commands. If the timeout is
|
||||
exceeded before the operation is completed, the module will error.
|
||||
default: 10
|
||||
ssh_keyfile:
|
||||
description:
|
||||
- Specifies the SSH keyfile to use to authenticate the connection to
|
||||
the remote device. This argument is only used for I(cli) transports.
|
||||
If the value is not specified in the task, the value of environment
|
||||
variable C(ANSIBLE_NET_SSH_KEYFILE) will be used instead.
|
||||
transport:
|
||||
description:
|
||||
- Configures the transport connection to use when connecting to the
|
||||
remote device.
|
||||
required: true
|
||||
choices:
|
||||
- rest
|
||||
- cli
|
||||
default: cli
|
||||
|
||||
notes:
|
||||
- For more information on using Ansible to manage F5 Networks devices see U(https://www.ansible.com/integrations/networks/f5).
|
||||
- Requires the f5-sdk Python package on the host. This is as easy as C(pip install f5-sdk).
|
||||
requirements:
|
||||
- f5-sdk >= 3.0.6
|
||||
- f5-sdk >= 3.0.9
|
||||
'''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue