Skip to content

Commit

Permalink
[ignore] fix indentation in examples of aci vrf multicast for delegat…
Browse files Browse the repository at this point in the history
…e_to
  • Loading branch information
akinross authored and lhercot committed Nov 17, 2023
1 parent 2a0d724 commit e47ff69
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions plugins/modules/aci_vrf_multicast.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@
tenant: ansible_tenant
vrf: ansible_vrf
state: present
delegate_to: localhost
delegate_to: localhost
- name: Change Multicast PIM Settings on a VRF
cisco.aci.aci_vrf_multicast:
Expand All @@ -202,7 +202,7 @@
mtu: 2000
control_state: [ fast, strict ]
state: present
delegate_to: localhost
delegate_to: localhost
- name: Change Multicast Resource Policy on a VRF
cisco.aci.aci_vrf_multicast:
Expand All @@ -216,7 +216,7 @@
reserved_multicast_entries: 20
reserved_route_map: uni/tn-ansible_test/rtmap-ansible_test
state: present
delegate_to: localhost
delegate_to: localhost
- name: Remove Route-Map from Multicast Resource Policy on a VRF
cisco.aci.aci_vrf_multicast:
Expand All @@ -228,7 +228,7 @@
resource_policy:
reserved_route_map: ""
state: present
delegate_to: localhost
delegate_to: localhost
- name: Change Multicast Any Source Multicast (ASM) Settings on a VRF
cisco.aci.aci_vrf_multicast:
Expand All @@ -244,7 +244,7 @@
max_rate: 64000
source_ip: 1.1.1.1
state: present
delegate_to: localhost
delegate_to: localhost
- name: Change Multicast Source Specific Multicast (SSM) Settings on a VRF
cisco.aci.aci_vrf_multicast:
Expand All @@ -256,7 +256,7 @@
source_specific_multicast:
group_range_route_map: uni/tn-ansible_test/rtmap-ansible_test
state: present
delegate_to: localhost
delegate_to: localhost
- name: Change Multicast Bootstrap Router (BSR) Settings on a VRF
cisco.aci.aci_vrf_multicast:
Expand All @@ -269,7 +269,7 @@
bsr_filter: uni/tn-ansible_test/rtmap-ansible_test
rp_updates: [ forward, listen ]
state: present
delegate_to: localhost
delegate_to: localhost
- name: Change Multicast Auto-Rendezvous Point (Auto-RP) Settings on a VRF
cisco.aci.aci_vrf_multicast:
Expand All @@ -282,7 +282,7 @@
ma_filter: uni/tn-ansible_test/rtmap-ansible_test
rp_updates: [ forward, listen ]
state: present
delegate_to: localhost
delegate_to: localhost
- name: Disable Multicast on a VRF
cisco.aci.aci_vrf_multicast:
Expand All @@ -292,7 +292,7 @@
tenant: ansible_tenant
vrf: ansible_vrf
state: absent
delegate_to: localhost
delegate_to: localhost
- name: Query Multicast Settings for a VRF
cisco.aci.aci_vrf_multicast:
Expand All @@ -302,17 +302,17 @@
tenant: ansible_tenant
vrf: ansible_vrf
state: query
delegate_to: localhost
register: query_result
delegate_to: localhost
register: query_result
- name: Query Multicast Settings for all VRFs
cisco.aci.aci_vrf_multicast:
host: apic
username: admin
password: SomeSecretePassword
state: query
delegate_to: localhost
register: query_result
delegate_to: localhost
register: query_result
"""

RETURN = r"""
Expand Down

0 comments on commit e47ff69

Please sign in to comment.