CiscoDevNet/terraform-provider-iosxe

ip as-path access-list

Closed this issue · 2 comments

Description

The option to create an ip as-path access-list seems to be missing.

Can you please tell us how to configure or implement this feature?

show running-config | section include as-path
This is part of an example running config:

ip as-path access-list 1 permit _12345_

json path: .data["Cisco-IOS-XE-native:native"].ip
This is the restconf-json formatted running config:

{
  "as-path": {
    "Cisco-IOS-XE-bgp:access-list": [
      {
        "name": 1,
        "extended-grouping": {
          "extended_grouping": [
            {
              "action": "permit",
              "string": "_12345_"
            }
          ]
        }
      }
    ]
  }
}

Added in 0.5.2 release.