mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
Minor fixes (#25059)
1) Examples: Remove double space between "option:" and "value" 2) Documentation: Fix rendering usses 3) Documentation: Remove `required: true` to match argspec
This commit is contained in:
@@ -418,52 +418,52 @@ EXAMPLES = '''
|
||||
|
||||
- name: "Config BGP Address_Family"
|
||||
ce_bgp_af:
|
||||
state: present
|
||||
vrf_name: js
|
||||
af_type: ipv4uni
|
||||
state: present
|
||||
vrf_name: js
|
||||
af_type: ipv4uni
|
||||
provider: "{{ cli }}"
|
||||
|
||||
- name: "Undo BGP Address_Family"
|
||||
ce_bgp_af:
|
||||
state: absent
|
||||
vrf_name: js
|
||||
af_type: ipv4uni
|
||||
state: absent
|
||||
vrf_name: js
|
||||
af_type: ipv4uni
|
||||
provider: "{{ cli }}"
|
||||
|
||||
- name: "Config import route"
|
||||
ce_bgp_af:
|
||||
state: present
|
||||
vrf_name: js
|
||||
af_type: ipv4uni
|
||||
import_protocol: ospf
|
||||
import_process_id: 123
|
||||
state: present
|
||||
vrf_name: js
|
||||
af_type: ipv4uni
|
||||
import_protocol: ospf
|
||||
import_process_id: 123
|
||||
provider: "{{ cli }}"
|
||||
|
||||
- name: "Undo import route"
|
||||
ce_bgp_af:
|
||||
state: absent
|
||||
vrf_name: js
|
||||
af_type: ipv4uni
|
||||
import_protocol: ospf
|
||||
import_process_id: 123
|
||||
state: absent
|
||||
vrf_name: js
|
||||
af_type: ipv4uni
|
||||
import_protocol: ospf
|
||||
import_process_id: 123
|
||||
provider: "{{ cli }}"
|
||||
|
||||
- name: "Config network route"
|
||||
ce_bgp_af:
|
||||
state: present
|
||||
vrf_name: js
|
||||
af_type: ipv4uni
|
||||
network_address: 1.1.1.1
|
||||
mask_len: 24
|
||||
state: present
|
||||
vrf_name: js
|
||||
af_type: ipv4uni
|
||||
network_address: 1.1.1.1
|
||||
mask_len: 24
|
||||
provider: "{{ cli }}"
|
||||
|
||||
- name: "Undo network route"
|
||||
ce_bgp_af:
|
||||
state: absent
|
||||
vrf_name: js
|
||||
af_type: ipv4uni
|
||||
network_address: 1.1.1.1
|
||||
mask_len: 24
|
||||
state: absent
|
||||
vrf_name: js
|
||||
af_type: ipv4uni
|
||||
network_address: 1.1.1.1
|
||||
mask_len: 24
|
||||
provider: "{{ cli }}"
|
||||
'''
|
||||
|
||||
|
||||
Reference in New Issue
Block a user