mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Check for group_name and cidr_ip.
This commit is contained in:
parent
bd67c6756a
commit
c5433d9742
1 changed files with 2 additions and 0 deletions
|
@ -211,6 +211,8 @@ def main():
|
||||||
ip = None
|
ip = None
|
||||||
if 'group_id' in rule and 'cidr_ip' in rule:
|
if 'group_id' in rule and 'cidr_ip' in rule:
|
||||||
module.fail_json(msg="Specify group_id OR cidr_ip, not both")
|
module.fail_json(msg="Specify group_id OR cidr_ip, not both")
|
||||||
|
elif 'group_name' in rule and 'cidr_ip' in rule:
|
||||||
|
module.fail_json(msg="Specify group_name OR cidr_ip, not both")
|
||||||
elif 'group_id' in rule and 'group_name' in rule:
|
elif 'group_id' in rule and 'group_name' in rule:
|
||||||
module.fail_json(msg="Specify group_id OR group_name, not both")
|
module.fail_json(msg="Specify group_id OR group_name, not both")
|
||||||
elif 'group_id' in rule:
|
elif 'group_id' in rule:
|
||||||
|
|
Loading…
Reference in a new issue