From 899d0b0d14403dd0245b09c519e1020ccb7b1b26 Mon Sep 17 00:00:00 2001 From: akinross Date: Fri, 5 Jul 2024 08:47:40 +0200 Subject: [PATCH] [ignore] Remove required type for absent state in mso_schema_template_vrf_rp --- plugins/modules/mso_schema_template_vrf_rp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/modules/mso_schema_template_vrf_rp.py b/plugins/modules/mso_schema_template_vrf_rp.py index 85aa3e56..d2c1690a 100644 --- a/plugins/modules/mso_schema_template_vrf_rp.py +++ b/plugins/modules/mso_schema_template_vrf_rp.py @@ -136,7 +136,7 @@ def main(): argument_spec=argument_spec, supports_check_mode=True, required_if=[ - ["state", "absent", ["ip", "type"]], + ["state", "absent", ["ip"]], ["state", "present", ["ip", "type"]], ], )