Skip to content

Commit

Permalink
[ignore] Modify documentation for march rule terms and test cases.
Browse files Browse the repository at this point in the history
  • Loading branch information
gmicol committed Oct 12, 2023
1 parent 585b59e commit 3cb71c4
Show file tree
Hide file tree
Showing 12 changed files with 21 additions and 21 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 @@ -71,7 +71,7 @@
"""

EXAMPLES = r"""
- name: Create a match match AS-path regex term
- name: Create a match with AS-path regex term
cisco.aci.match_as_path_regex_term:
host: apic
username: admin
Expand All @@ -83,7 +83,7 @@
state: present
delegate_to: localhost
- name: Delete a match match AS-path regex term
- name: Delete a match with AS-path regex term
cisco.aci.match_as_path_regex_term:
host: apic
username: admin
Expand All @@ -94,7 +94,7 @@
state: absent
delegate_to: localhost
- name: Query all match AS-path regex terms
- name: Query all match with AS-path regex terms
cisco.aci.match_as_path_regex_term:
host: apic
username: admin
Expand All @@ -103,7 +103,7 @@
delegate_to: localhost
register: query_result
- name: Query a specific match match AS-path regex term
- name: Query a specific match with AS-path regex term
cisco.aci.match_as_path_regex_term:
host: apic
username: admin
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/aci_match_community_factor.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
description:
- The item scope.
- If the scope is transitive, this community may be passed between ASs.
- If the scope is Non transitive, this community should be carried only within the local AS.
- If the scope is non-transitive, this community should be carried only within the local AS.
type: str
choices: [ transitive, non-transitive ]
description:
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 @@ -78,7 +78,7 @@
"""

EXAMPLES = r"""
- name: Create a match comunity regex term
- name: Create a match with comunity regex term
cisco.aci.match_community_regex_term:
host: apic
username: admin
Expand All @@ -91,7 +91,7 @@
state: present
delegate_to: localhost
- name: Delete a match comunity regex term
- name: Delete a match with comunity regex term
cisco.aci.match_community_regex_term:
host: apic
username: admin
Expand All @@ -102,7 +102,7 @@
state: absent
delegate_to: localhost
- name: Query all match rule commmuntiy regex terms
- name: Query all match with commmuntiy regex terms
cisco.aci.match_community_regex_term:
host: apic
username: admin
Expand All @@ -111,7 +111,7 @@
delegate_to: localhost
register: query_result
- name: Query a specific match comunity regex term
- name: Query a specific match with comunity regex term
cisco.aci.match_community_regex_term:
host: apic
username: admin
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 @@ -67,7 +67,7 @@
"""

EXAMPLES = r"""
- name: Create a match match AS-path regex term
- name: Create a match with community term
cisco.aci.match_community_term:
host: apic
username: admin
Expand All @@ -78,7 +78,7 @@
state: present
delegate_to: localhost
- name: Delete a match match AS-path regex term
- name: Delete a match with community term
cisco.aci.match_community_term:
host: apic
username: admin
Expand All @@ -89,7 +89,7 @@
state: absent
delegate_to: localhost
- name: Query all match AS-path regex terms
- name: Query all with community terms
cisco.aci.match_community_term:
host: apic
username: admin
Expand All @@ -98,7 +98,7 @@
delegate_to: localhost
register: query_result
- name: Query a specific match match AS-path regex term
- name: Query a specific match with community term
cisco.aci.match_community_term:
host: apic
username: admin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
<<: *match_as_path_regex_term_absent
register: nm_remove_match_as_path_regex_term

- name: Remove match regex AS-Path term for l3out - testing idempotency
- name: Remove match regex AS-Path term for l3out again - testing previous Removal
aci_match_as_path_regex_term:
<<: *match_as_path_regex_term_absent
register: nm_remove_match_as_path_regex_term_idempotency
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
<<: *match_community_term_absent
register: nm_remove_match_community_factor

- name: Remove match community factor - testing idempotency
- name: Remove match community factor again - testing previous Removal
aci_match_community_factor:
<<: *match_community_term_absent
register: nm_remove_match_community_factor_idempotency
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
<<: *match_community_regex_term_absent
register: nm_remove_match_community_regex_term

- name: Remove match community regex term - testing idempotency
- name: Remove match community regex term again - testing previous Removal
aci_match_community_regex_term:
<<: *match_community_regex_term_absent
register: nm_remove_match_community_regex_term_idempotency
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
<<: *match_community_term_absent
register: nm_remove_match_community_term

- name: Remove match community term - testing idempotency
- name: Remove match community term again - testing previous Removal
aci_match_community_term:
<<: *match_community_term_absent
register: nm_remove_match_community_term_idempotency
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
<<: *match_route_destination_absent
register: nm_remove_match_route_destination

- name: Remove match route destination rule - testing idempotency
- name: Remove match route destination rule again - testing previous Removal
aci_match_route_destination:
<<: *match_route_destination_absent
register: nm_remove_match_route_destination_idempotency
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/targets/aci_match_rule/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
<<: *match_rule_absent
register: nm_remove_match_rule

- name: Remove match rule profile for l3out - testing idempotency
- name: Remove match rule profile for l3out again - testing previous Removal
aci_match_rule:
<<: *match_rule_absent
register: nm_remove_match_rule_idempotency
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@
<<: *aci_route_control_context_absent
register: nm_remove_remove_route_control_context

- name: Remove route control profile for l3out - testing idempotency
- name: Remove route control profile for l3out again - testing previous Removal
aci_route_control_context:
<<: *aci_route_control_context_absent
register: nm_remove_route_control_context_idempotency
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
<<: *route_control_profile_absent
register: nm_remove_route_control_profile

- name: Remove route control profile for l3out - testing idempotency
- name: Remove route control profile for l3out again - testing previous Removal
aci_route_control_profile:
<<: *route_control_profile_absent
register: nm_remove_route_control_profile_idempotency
Expand Down

0 comments on commit 3cb71c4

Please sign in to comment.