Skip to content

Commit

Permalink
[ignore] Update the examples in match rules modules.
Browse files Browse the repository at this point in the history
  • Loading branch information
gmicol authored and lhercot committed Nov 2, 2023
1 parent 86cfc61 commit 6906a3e
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 18 deletions.
8 changes: 4 additions & 4 deletions plugins/modules/aci_match_as_path_regex_term.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@

EXAMPLES = r"""
- name: Create a match with AS-path regex term
cisco.aci.match_as_path_regex_term:
cisco.aci.aci_match_as_path_regex_term:
host: apic
username: admin
password: SomeSecretPassword
Expand All @@ -84,7 +84,7 @@
delegate_to: localhost
- name: Delete a match with AS-path regex term
cisco.aci.match_as_path_regex_term:
cisco.aci.aci_match_as_path_regex_term:
host: apic
username: admin
password: SomeSecretPassword
Expand All @@ -95,7 +95,7 @@
delegate_to: localhost
- name: Query all match with AS-path regex terms
cisco.aci.match_as_path_regex_term:
cisco.aci.aci_match_as_path_regex_term:
host: apic
username: admin
password: SomeSecretPassword
Expand All @@ -104,7 +104,7 @@
register: query_result
- name: Query a specific match with AS-path regex term
cisco.aci.match_as_path_regex_term:
cisco.aci.aci_match_as_path_regex_term:
host: apic
username: admin
password: SomeSecretPassword
Expand Down
8 changes: 4 additions & 4 deletions plugins/modules/aci_match_community_factor.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@

EXAMPLES = r"""
- name: Create a match match AS-path regex term
cisco.aci.match_community_term:
cisco.aci.aci_match_community_factor:
host: apic
username: admin
password: SomeSecretPassword
Expand All @@ -93,7 +93,7 @@
delegate_to: localhost
- name: Delete a match match AS-path regex term
cisco.aci.match_community_term:
cisco.aci.aci_match_community_factor:
host: apic
username: admin
password: SomeSecretPassword
Expand All @@ -105,7 +105,7 @@
delegate_to: localhost
- name: Query all match AS-path regex terms
cisco.aci.match_community_term:
cisco.aci.aci_match_community_factor:
host: apic
username: admin
password: SomeSecretPassword
Expand All @@ -114,7 +114,7 @@
register: query_result
- name: Query a specific match match AS-path regex term
cisco.aci.match_community_term:
cisco.aci.aci_match_community_factor:
host: apic
username: admin
password: SomeSecretPassword
Expand Down
8 changes: 4 additions & 4 deletions plugins/modules/aci_match_community_regex_term.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@

EXAMPLES = r"""
- name: Create a match with comunity regex term
cisco.aci.match_community_regex_term:
cisco.aci.aci_match_community_regex_term:
host: apic
username: admin
password: SomeSecretPassword
Expand All @@ -92,7 +92,7 @@
delegate_to: localhost
- name: Delete a match with comunity regex term
cisco.aci.match_community_regex_term:
cisco.aci.aci_match_community_regex_term:
host: apic
username: admin
password: SomeSecretPassword
Expand All @@ -103,7 +103,7 @@
delegate_to: localhost
- name: Query all match with commmuntiy regex terms
cisco.aci.match_community_regex_term:
cisco.aci.aci_match_community_regex_term:
host: apic
username: admin
password: SomeSecretPassword
Expand All @@ -112,7 +112,7 @@
register: query_result
- name: Query a specific match with comunity regex term
cisco.aci.match_community_regex_term:
cisco.aci.aci_match_community_regex_term:
host: apic
username: admin
password: SomeSecretPassword
Expand Down
8 changes: 4 additions & 4 deletions plugins/modules/aci_match_community_term.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@

EXAMPLES = r"""
- name: Create a match with community term
cisco.aci.match_community_term:
cisco.aci.aci_match_community_term:
host: apic
username: admin
password: SomeSecretPassword
Expand All @@ -79,7 +79,7 @@
delegate_to: localhost
- name: Delete a match with community term
cisco.aci.match_community_term:
cisco.aci.aci_match_community_term:
host: apic
username: admin
password: SomeSecretPassword
Expand All @@ -90,7 +90,7 @@
delegate_to: localhost
- name: Query all with community terms
cisco.aci.match_community_term:
cisco.aci.aci_match_community_term:
host: apic
username: admin
password: SomeSecretPassword
Expand All @@ -99,7 +99,7 @@
register: query_result
- name: Query a specific match with community term
cisco.aci.match_community_term:
cisco.aci.aci_match_community_term:
host: apic
username: admin
password: SomeSecretPassword
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@
description: match route destination rule 1 for ansible_match_rule match rule profile
ip: 11.11.11.11/24
aggregate: yes
from_prefix_lenght: 0
to_prefix_lenght: 32
from_prefix_length: 0
to_prefix_length: 32
state: present
check_mode: true
register: cm_add_match_route_destination
Expand Down

0 comments on commit 6906a3e

Please sign in to comment.