Ansible regex_findall多个集合

时间:2017-04-27 14:37:15

标签: ansible ansible-facts

我正在尝试使用Ansible从IOS设备收集数据,然后使用收集的数据来运行任务。

我正在运行一个show running-config命令来查找具有特定描述的接口:

- name: get current running-config
  ios_command:
    host: "{{ inventory_hostname }}"
    commands:
      - show running-config | i interface|description
  register: config  

该任务的输出:

interface GigabitEthernet1/0/35
 description TEST PHONE
interface GigabitEthernet1/0/36
 description TEST PHONE
interface GigabitEthernet1/0/37
 description *W137
interface GigabitEthernet1/0/38
 description *W138
interface GigabitEthernet1/0/39
 description *W139
interface GigabitEthernet1/0/40
 description *W140

我希望获取具有以*开头的描述的所有接口名称/编号。我正在使用set_fact从regex_findall()中获取它:

- name: get current interfaces with special description
  set_fact: noAuthInts="{{ config.stdout[0] | regex_findall('(.*?)\n description \*(.*)')}}"

正则表达式工作正常并从两组中获取数据。输出被视为:

msg": [
            [
                "interface GigabitEthernet1/0/37",
                "W137"
            ],
            [
                "interface GigabitEthernet1/0/38",
                "W138"
            ],
            [
                "interface GigabitEthernet1/0/39",
                "W139"
            ],
            [
                "interface GigabitEthernet1/0/40",
                "W140"
            ],
            [
                "interface GigabitEthernet1/0/41",
                "W141"
            ],
            [
                "interface GigabitEthernet1/0/42",
                "W142"
            ],
            [
                "interface GigabitEthernet1/0/43",
                "W143"
            ]
        ]

我无法弄清楚如何获取该列表中的两个项目并单独使用它们。我想用ios_config运行一个任务,从该列表中的接口名称/编号配置接口,并使用我收集的描述。

这是一个嵌套列表吗?我尝试了不同的变体,如:

noAuthInts.0或noAuthInts.0.0和noAuthInts.0.1,但不产生我正在寻找的东西。

我还尝试使用with_nested:“{{noAuthInts}}”并迭代,但似乎没有正确循环。

如何抓取该列表中的两个部分并单独使用它们?

0 个答案:

没有答案