summaryrefslogtreecommitdiff
path: root/plugins/modules/vyos_l3_interface.py
diff options
context:
space:
mode:
authorGomathiselviS <gomathiselvi@gmail.com>2021-02-18 15:26:33 -0500
committerGitHub <noreply@github.com>2021-02-18 20:26:33 +0000
commitb739944aabe5d3c287a89544fc365382d2719070 (patch)
treec612c86a6913549c05ab813fd85744c6807b9c5c /plugins/modules/vyos_l3_interface.py
parent4e8356f7ae00e55ea7554b9c817141035e40826b (diff)
downloadvyos-ansible-old-b739944aabe5d3c287a89544fc365382d2719070.tar.gz
vyos-ansible-old-b739944aabe5d3c287a89544fc365382d2719070.zip
Fix test-sanity-docker failures (#124)
Fix test-sanity-docker failures Reviewed-by: Nathaniel Case <this.is@nathanielca.se> https://github.com/Qalthos
Diffstat (limited to 'plugins/modules/vyos_l3_interface.py')
-rw-r--r--plugins/modules/vyos_l3_interface.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/modules/vyos_l3_interface.py b/plugins/modules/vyos_l3_interface.py
index 88b5a91..214022a 100644
--- a/plugins/modules/vyos_l3_interface.py
+++ b/plugins/modules/vyos_l3_interface.py
@@ -104,13 +104,13 @@ EXAMPLES = """
vyos.vyos.vyos_l3_interface:
aggregate:
- {name: eth1, ipv4: 192.168.2.10/24}
- - {name: eth2, ipv4: 192.168.3.10/24, ipv6: fd5d:12c9:2201:1::1/64}
+ - {name: eth2, ipv4: 192.168.3.10/24, ipv6: "fd5d:12c9:2201:1::1/64"}
- name: Remove IP addresses on aggregate
vyos.vyos.vyos_l3_interface:
aggregate:
- {name: eth1, ipv4: 192.168.2.10/24}
- - {name: eth2, ipv4: 192.168.3.10/24, ipv6: fd5d:12c9:2201:1::1/64}
+ - {name: eth2, ipv4: 192.168.3.10/24, ipv6: "fd5d:12c9:2201:1::1/64"}
state: absent
"""