cisco.mso.mso_schema_template_external_epg_selector 模块 – 管理模式模板中的外部 EPG 选择器

注意

此模块是 cisco.mso 集合(版本 2.9.0)的一部分。

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

要安装它,请使用:ansible-galaxy collection install cisco.mso。您需要更多要求才能使用此模块,请参阅 要求 以了解详细信息。

要在剧本中使用它,请指定:cisco.mso.mso_schema_template_external_epg_selector

概要

  • 管理 Cisco ACI Multi-Site 上模式模板中的外部 EPG 选择器。

要求

执行此模块的主机需要满足以下要求。

  • Multi Site Orchestrator v2.1 或更高版本

参数

参数

注释

表达式

列表 / 元素=字典

与此选择器关联的表达式。

运算符

字符串 / 必填

与表达式关联的运算符,在本例中始终等于。

选择

  • "等于"

类型

字符串 / 必填

表达式的名称,在本例中始终为 IP 地址。

选择

  • "ip_address"

字符串 / 必填

与表达式关联的 IP 地址/子网的值。

external_epg

字符串 / 必填

要管理的外部 EPG 的名称。

主机

别名:hostname

字符串

ACI Multi Site Orchestrator 主机的 IP 地址或主机名。

如果未在任务中指定该值,则将使用环境变量 MSO_HOST 的值。

login_domain

字符串

用于身份验证的登录域名。

默认值为 Local。

如果未在任务中指定该值,则将使用环境变量 MSO_LOGIN_DOMAIN 的值。

当使用 HTTPAPI 连接插件时,如果未指定此属性,则将使用清单变量 ansible_httpapi_login_domain

output_level

字符串

影响此 MSO 模块的输出。

normal 表示标准输出,包括 current 字典

info 添加信息输出,包括 previousproposedsent 字典

debug 添加调试输出,包括 filter_stringmethodresponsestatusurl 信息

如果未在任务中指定该值,则将使用环境变量 MSO_OUTPUT_LEVEL 的值。

选择

  • "debug"

  • "info"

  • "normal" ←(默认)

密码

字符串

用于身份验证的密码。

如果未在任务中指定该值,则将使用环境变量 MSO_PASSWORDANSIBLE_NET_PASSWORD 的值。

端口

整数

用于 REST 连接的端口号。

默认值取决于参数 `use_ssl`。

如果未在任务中指定该值,则将使用环境变量 MSO_PORT 的值。

模式

字符串 / 必填

模式的名称。

选择器

字符串

选择器的名称。

状态

字符串

使用 presentabsent 进行添加或删除。

使用 query 列出一个或多个对象。

选择

  • "absent"

  • "present" ←(默认)

  • "query"

模板

字符串 / 必填

要更改的模板的名称。

超时

整数

套接字级别的超时时间(以秒为单位)。

默认值为 30 秒。

如果未在任务中指定该值,则将使用环境变量 MSO_TIMEOUT 的值。

use_proxy

布尔值

如果 false,则不会使用代理,即使目标主机上的环境变量中定义了代理。

如果任务中未指定该值,则将使用环境变量 MSO_USE_PROXY 的值代替。

默认值为 true

选择

  • false

  • true

use_ssl

布尔值

如果为 false,则将使用 HTTP 连接而不是默认的 HTTPS 连接。

如果任务中未指定该值,则将使用环境变量 MSO_USE_SSL 的值代替。

当使用 HTTPAPI 连接插件时,如果未指定此属性,则将使用清单变量 ansible_httpapi_use_ssl

当使用 HTTPAPI 连接插件(mso 或 nd)时,默认值为 false,当使用旧连接方法时(仅适用于 mso),默认值为 true

选择

  • false

  • true

username

字符串

用于身份验证的用户名。

如果任务中未指定该值,则将使用环境变量 MSO_USERNAMEANSIBLE_NET_USERNAME 的值代替。

validate_certs

布尔值

如果为 false,则不会验证 SSL 证书。

只有在个人控制的站点上使用自签名证书时,才应将其设置为 false

如果任务中未指定该值,则将使用环境变量 MSO_VALIDATE_CERTS 的值代替。

默认值为 true

选择

  • false

  • true

注意

注意

  • 此模块是为了支持 Multi Site Orchestrator v2.1 或更高版本而编写的。某些或全部功能可能在早期版本上无法正常工作。

另请参阅

另请参阅

cisco.mso.mso_schema_template_external_epg

管理模式模板中的外部 EPG。

示例

- name: Add a selector to an External EPG
  cisco.mso.mso_schema_template_external_epg_selector:
    host: mso_host
    username: admin
    password: SomeSecretPassword
    schema: Schema 1
    template: Template 1
    external_epg: extEPG 1
    selector: selector_1
    expressions:
      - type: ip_address
        operator: equals
        value: 10.0.0.0
    state: present

- name: Remove a Selector
  cisco.mso.mso_schema_template_external_epg_selector:
    host: mso_host
    username: admin
    password: SomeSecretPassword
    schema: Schema 1
    template: Template 1
    external_epg: extEPG 1
    selector: selector_1
    state: absent

- name: Query a specific Selector
  cisco.mso.mso_schema_template_external_epg_selector:
    host: mso_host
    username: admin
    password: SomeSecretPassword
    schema: Schema 1
    template: Template 1
    external_epg: extEPG 1
    selector: selector_1
    state: query
  register: query_result

- name: Query all Selectors
  cisco.mso.mso_schema_template_external_epg_selector:
    host: mso_host
    username: admin
    password: SomeSecretPassword
    schema: Schema 1
    template: Template 1
    external_epg: extEPG 1
    state: query
  register: query_result

作者

  • Shreyas Srish (@shrsr)

  • Cindy Zhao (@cizhao)