Note
This module is part of the f5networks.f5_modules collection (version 1.37.1).
You might already have this collection installed if you are using the ansible package. It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install f5networks.f5_modules.
To use it in a playbook, specify: f5networks.f5_modules.bigip_ucs.
New in f5networks.f5_modules 1.0.0
Parameter | Comments |
|---|---|
force boolean | If Choices:
|
include_chassis_level_config boolean | During restoration of the UCS file, includes chassis level configuration that is shared among boot volume sets. For example, the cluster default configuration. Choices:
|
no_license boolean | Performs a full restore of the UCS file and all the files it contains, with the exception of the license file. The option must be used to restore a UCS on RMA (Returned Materials Authorization) devices. Choices:
|
no_platform_check boolean | Bypasses the platform check and allows installation of a UCS that was created using a different platform. By default (without this option), installation of a UCS created from a different platform is not allowed. Choices:
|
passphrase string | Specifies the passphrase that is necessary to load the specified UCS file. |
provider dictionary added in f5networks.f5_modules 1.0.0 | A dict object containing connection details. |
|
auth_provider string |
Configures the auth provider for to obtain authentication tokens from the remote device. This option is really used when working with BIG-IQ devices. |
|
no_f5_teem boolean |
If You may omit this option by setting the environment variable Previously used variable Choices:
|
|
password aliases: pass, pwd string / required |
The password for the user account used to connect to the BIG-IP or the BIG-IQ. You may omit this option by setting the environment variable |
|
server string / required |
The BIG-IP host or the BIG-IQ host. You may omit this option by setting the environment variable |
|
server_port integer |
The BIG-IP server port. You may omit this option by setting the environment variable Default: |
|
timeout integer |
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. |
|
transport string |
Configures the transport connection to use when connecting to the remote device. Choices:
|
|
user string / required |
The username to connect to the BIG-IP or the BIG-IQ. This user must have administrative privileges on the device. You may omit this option by setting the environment variable |
|
validate_certs boolean |
If You may omit this option by setting the environment variable Choices:
|
reset_trust boolean | When specified, the device and trust domain certs and keys are not loaded from the UCS. Instead, a new set is generated. Choices:
|
state string | When Choices:
|
ucs string / required | The path to the UCS file to install. The parameter must be provided if the |
Note
bigip_hostname Ansible module in a task before using this module.- name: Upload UCS
bigip_ucs:
ucs: /root/bigip.localhost.localdomain.ucs
state: present
provider:
server: lb.mydomain.com
user: admin
password: secret
delegate_to: localhost
- name: Install (upload, install) UCS.
bigip_ucs:
ucs: /root/bigip.localhost.localdomain.ucs
state: installed
provider:
server: lb.mydomain.com
user: admin
password: secret
delegate_to: localhost
- name: Install (upload, install) UCS without installing the license portion
bigip_ucs:
ucs: /root/bigip.localhost.localdomain.ucs
state: installed
no_license: true
provider:
server: lb.mydomain.com
user: admin
password: secret
delegate_to: localhost
- name: Install (upload, install) UCS except the license, and bypassing the platform check
bigip_ucs:
ucs: /root/bigip.localhost.localdomain.ucs
state: installed
no_license: true
no_platform_check: true
provider:
server: lb.mydomain.com
user: admin
password: secret
delegate_to: localhost
- name: Install (upload, install) UCS using a passphrase necessary to load the UCS
bigip_ucs:
ucs: /root/bigip.localhost.localdomain.ucs
state: installed
passphrase: MyPassphrase1234
provider:
server: lb.mydomain.com
user: admin
password: secret
delegate_to: localhost
- name: Remove uploaded UCS file
bigip_ucs:
ucs: bigip.localhost.localdomain.ucs
state: absent
provider:
server: lb.mydomain.com
user: admin
password: secret
delegate_to: localhost
© 2012–2018 Michael DeHaan
© 2018–2025 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/latest/collections/f5networks/f5_modules/bigip_ucs_module.html