community.vmware.vmware_vc_infraprofile_info 模块 – 列出和导出 VMware vCenter 基础架构配置文件。
注意
此模块是 community.vmware 集合(版本 5.2.0)的一部分。
如果您正在使用 ansible
包,则可能已经安装了此集合。它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用: ansible-galaxy collection install community.vmware
。您需要更多要求才能使用此模块,有关详细信息,请参阅要求。
要在 Playbook 中使用它,请指定:community.vmware.vmware_vc_infraprofile_info
。
概要
用于管理 VMware vCenter 基础架构配置文件配置的模块。
vCenter 基础架构配置文件库功能是在 vSphere 7.0 版本中引入的,因此此模块不支持早期版本的 vSphere。
要求
在执行此模块的主机上需要以下要求。
vSphere 自动化 SDK
参数
参数 |
注释 |
---|---|
需要执行的 API 选择
|
|
包含基础架构配置文件 JSON 数据的配置文件路径,支持相对路径和绝对路径。 仅当使用 |
|
用于执行导入配置文件任务的 decryption_key 参数,目前尚未被 API 团队考虑。 |
|
关于加密或解密密钥的描述。 |
|
用于执行导入配置文件任务的 encryption_key 参数,目前尚未被 API 团队考虑。 |
|
vSphere vCenter 服务器的主机名或 IP 地址。 如果未在任务中指定值,则将使用环境变量 |
|
vSphere vCenter 服务器的密码。 如果未在任务中指定值,则将使用环境变量 |
|
要导出、导入和验证的配置文件名称列表。 为 List API 运行时不需要此参数,不用于 |
|
连接到协议。 选择
|
|
将接收所有 HTTPS 请求并转发它们的 HTTP 代理的端口。 如果未在任务中指定值,则将使用环境变量 |
|
vSphere vCenter 服务器的用户名。 如果未在任务中指定值,则将使用环境变量 |
|
当 SSL 证书无效时允许连接。 当证书不受信任时,设置为 如果未在任务中指定值,则将使用环境变量 选择
|
注意
注意
所有模块都需要 API 写入访问权限,因此在免费 ESXi 许可证上不受支持。
所有变量和 VMware 对象名称都区分大小写。
示例
- name: Get information about VC infraprofile
vmware_vc_infraprofile_info:
hostname: '{{ vcenter_hostname }}'
username: '{{ vcenter_username }}'
password: '{{ vcenter_password }}'
delegate_to: localhost
- name: export vCenter appliance infra profile config
vmware_vc_infraprofile_info:
hostname: '{{ vcenter_hostname }}'
username: '{{ vcenter_username }}'
password: '{{ vcenter_password }}'
api: "export"
profiles: "ApplianceManagement"
delegate_to: localhost
- name: validate vCenter appliance infra profile config
vmware_vc_infraprofile_info:
hostname: '{{ vcenter_hostname }}'
username: '{{ vcenter_username }}'
password: '{{ vcenter_password }}'
api: "validate"
profiles: "ApplianceManagement"
config_path: "export.json"
- name: import vCenter appliance infra profile config
vmware_vc_infraprofile_info:
hostname: '{{ vcenter_hostname }}'
username: '{{ vcenter_username }}'
password: '{{ vcenter_password }}'
api: "import"
profiles: "ApplianceManagement"
config_path: "import.json"
delegate_to: localhost
返回值
常见的返回值已记录在此处,以下是此模块特有的字段
键 |
描述 |
---|---|
有关导出文件的消息 返回: 成功时,API 设置为“export” 示例: |
|
有关 import_profile 规范导入的消息 返回: 成功时,API 设置为“import” 示例: |
|
infra 配置列表, 返回: 成功时,API 设置为“list” 示例: |
|
有关导出文件验证的消息 返回: 成功时,API 设置为“validate” 示例: |