f5networks.f5_modules.bigiq_license 查找 – 从 biqiq 可用许可证池中选择一个随机许可证密钥

注意

此查找插件是 f5networks.f5_modules 集合(版本 1.32.1)的一部分。

如果您正在使用 ansible 包,您可能已经安装了此集合。它不包含在 ansible-core 中。要检查是否已安装,请运行 ansible-galaxy collection list

要安装它,请使用:ansible-galaxy collection install f5networks.f5_modules

要在 playbook 中使用它,请指定:f5networks.f5_modules.bigiq_license

f5networks.f5_modules 1.0.0 中的新增功能

概要

  • 从 biqiq 可用许可证池中选择一个随机许可证密钥。

  • 需要指定 BIGIQ 许可证池名称和连接参数。

示例

- name: Get a regkey license from a license pool
  bigiq_regkey_license:
    key: "{{ lookup('f5networks.f5_modules.bigiq_license', pool_name='foo_pool', username=baz, password=bar, host=192.168.1.1, port=10443}}"
    state: present
    pool: foo_pool

- name: Get a regkey license from a license pool, use default credentials and port, disable SSL verification
  bigiq_regkey_license:
    key: "{{ lookup('f5networks.f5_modules.bigiq_license', pool_name='foo_pool', host=192.168.1.1, validate_certs=false}}"
    state: present
    pool: foo_pool

返回值

描述

返回值

字符串

随机项

返回:成功

作者

  • Wojciech Wypior (@wojtek0806)

提示

每个条目类型的配置条目都有从低到高的优先级顺序。 例如,列表中较低的变量将覆盖较高的变量。