community.vmware.vcenter_license 模块 – 管理 VMware vCenter 许可证密钥
注意
此模块是 community.vmware 集合 (版本 5.2.0) 的一部分。
如果您使用的是 ansible
包,则可能已经安装了此集合。它不包含在 ansible-core
中。要检查它是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用: ansible-galaxy collection install community.vmware
。
要在playbook中使用它,请指定: community.vmware.vcenter_license
。
概要
添加和删除vCenter、ESXi服务器许可证密钥。
参数
参数 |
注释 |
---|---|
应用vSAN许可证的集群名称。 |
|
操作要使用的数据中心名称。 |
|
将指定许可证分配到的ESXi服务器的主机名。 此参数是可选的。 |
|
vSphere vCenter服务器的主机名或IP地址。 如果任务中未指定值,则将使用环境变量 |
|
要在vSphere vCenter中管理的许可证密钥的可选标签。 这是一个键值对字典。 默认值: |
|
要在vSphere vCenter中管理的许可证密钥。 |
|
vSphere vCenter服务器的密码。 如果任务中未指定值,则将使用环境变量 |
|
将接收所有HTTPS请求并转发它们的HTTP代理的端口。 如果任务中未指定值,则将使用环境变量 |
|
是添加 ( 选项
|
|
vSphere vCenter服务器的用户名。 如果任务中未指定值,则将使用环境变量 |
|
允许在SSL证书无效时连接。当证书不受信任时,将其设置为 如果任务中未指定值,则将使用环境变量 选项
|
备注
注意
如果产品与许可证密钥匹配,并且vCenter当前仅分配了评估许可证,则此模块还将自动将当前vCenter分配给许可证密钥。
未使用的评估许可证 (00000-00000-00000-00000-00000) 不会列出。
如果指定了
esxi_hostname
,则会将license
密钥分配给ESXi主机。如果未指定
esxi_hostname
,则只会将license
密钥注册到vCenter清单中,而不会将其分配给ESXi主机。所有模块都需要API写访问权限,因此在免费ESXi许可证上不受支持。
示例
- name: Add a new vCenter license
community.vmware.vcenter_license:
hostname: '{{ vcenter_hostname }}'
username: '{{ vcenter_username }}'
password: '{{ vcenter_password }}'
license: f600d-21ae3-5592b-249e0-cc341
state: present
delegate_to: localhost
- name: Remove an (unused) vCenter license
community.vmware.vcenter_license:
hostname: '{{ vcenter_hostname }}'
username: '{{ vcenter_username }}'
password: '{{ vcenter_password }}'
license: f600d-21ae3-5592b-249e0-cc341
state: absent
delegate_to: localhost
- name: Add ESXi license and assign to the ESXi host
community.vmware.vcenter_license:
hostname: '{{ vcenter_hostname }}'
username: '{{ vcenter_username }}'
password: '{{ vcenter_password }}'
esxi_hostname: '{{ esxi_hostname }}'
license: f600d-21ae3-5592b-249e0-dd502
state: present
delegate_to: localhost
- name: Add vSAN license and assign to the given cluster
community.vmware.vcenter_license:
hostname: '{{ vcenter_hostname }}'
username: '{{ vcenter_username }}'
password: '{{ vcenter_password }}'
datacenter: '{{ datacenter_name }}'
cluster_name: '{{ cluster_name }}'
license: f600d-21ae3-5592b-249e0-dd502
state: present
delegate_to: localhost
返回值
常见的返回值已在此处记录,以下是此模块独有的字段
键 |
描述 |
---|---|
模块执行后许可证密钥列表 返回值:始终 示例: |