cisco.mso.ndo_l3_domain 模块 – 管理 Cisco Nexus Dashboard Orchestrator (NDO) 上的 L3 域。
注意
此模块是 cisco.mso 集合(版本 2.9.0)的一部分。
如果您正在使用 ansible
包,您可能已经安装了此集合。它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install cisco.mso
。您需要进一步的要求才能使用此模块,请参阅 要求 以了解详细信息。
要在剧本中使用它,请指定:cisco.mso.ndo_l3_domain
。
概要
管理 Cisco Nexus Dashboard Orchestrator (NDO) 上的 L3 域。
此模块仅在 ND v3.1(NDO v4.3)及更高版本上受支持。
要求
执行此模块的主机需要满足以下要求。
Multi Site Orchestrator v2.1 或更高版本
参数
参数 |
注释 |
---|---|
L3 域的描述。 |
|
ACI Multi Site Orchestrator 主机的 IP 地址或主机名。 如果任务中未指定该值,则将使用环境变量 |
|
L3 域的名称。 |
|
L3 域的 uuid。 当需要更新 |
|
用于身份验证的登录域名。 默认值为 Local。 如果任务中未指定该值,则将使用环境变量 当使用 HTTPAPI 连接插件时,如果未指定此属性,则将使用清单变量 |
|
影响此 MSO 模块的输出。
如果任务中未指定该值,则将使用环境变量 选项
|
|
用于身份验证的密码。 如果任务中未指定该值,则将使用环境变量 |
|
VLAN 池的名称。 提供空字符串将从 L3 域中删除池。 |
|
用于 REST 连接的端口号。 默认值取决于参数 `use_ssl`。 如果任务中未指定该值,则将使用环境变量 |
|
使用 使用 使用 选项
|
|
模板的名称。 模板必须是 Fabric 策略模板。 |
|
套接字级别的超时(以秒为单位)。 默认值为 30 秒。 如果任务中未指定该值,则将使用环境变量 |
|
如果为 如果在任务中未指定该值,则将使用环境变量 默认值为 选项
|
|
如果为 如果在任务中未指定该值,则将使用环境变量 当使用 HTTPAPI 连接插件时,如果未指定此属性,则将使用清单变量 当使用 HTTPAPI 连接插件(mso 或 nd)时,默认值为 选项
|
|
用于身份验证的用户名。 如果在任务中未指定该值,则将使用环境变量 |
|
如果为 仅当在个人控制的站点上使用自签名证书时,才应将其设置为 如果在任务中未指定该值,则将使用环境变量 默认值为 选项
|
注意事项
注意
此模块旨在支持 Multi Site Orchestrator v2.1 或更高版本。某些或全部功能可能在早期版本上无法正常工作。
示例
- name: Create a new L3 domain
cisco.mso.ndo_l3_domain:
host: mso_host
username: admin
password: SomeSecretPassword
template: ansible_tenant_template
l3_domain: ansible_test_l3_domain
pool: ansible_test_vlan_pool
state: present
- name: Query a L3 domain with template_name
cisco.mso.ndo_l3_domain:
host: mso_host
username: admin
password: SomeSecretPassword
template: ansible_tenant_template
l3_domain: ansible_test_l3_domain
state: query
register: query_one
- name: Query all L3 domains in the template
cisco.mso.ndo_l3_domain:
host: mso_host
username: admin
password: SomeSecretPassword
template: ansible_tenant_template
state: query
register: query_all
- name: Delete a vlan pool from a L3 domain
cisco.mso.ndo_l3_domain:
host: mso_host
username: admin
password: SomeSecretPassword
template: ansible_tenant_template
l3_domain: ansible_test_l3_domain
pool: ""
state: present
- name: Delete a L3 domain
cisco.mso.ndo_l3_domain:
host: mso_host
username: admin
password: SomeSecretPassword
template: ansible_tenant_template
l3_domain: ansible_test_l3_domain
state: absent