Skip to content

Commit

Permalink
Update pfsense_virtual_ip.py
Browse files Browse the repository at this point in the history
  • Loading branch information
genofire authored Jan 30, 2024
1 parent c23e006 commit 246b6d6
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions plugins/modules/pfsense_virtual_ip.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
DOCUMENTATION = """
---
module: pfsense_virtual_ip
version_added: "0.6.0"
version_added: "0.6.2"
author: Jan Wenzel (@coffeelover)
short_description: Manage pfSense virtual ip settings
description:
Expand All @@ -26,7 +26,7 @@
options:
mode:
description: Type
required: true
required: True
type: str
choices: ['proxyarp', 'carp', 'ipalias', 'other']
noexpand:
Expand All @@ -39,7 +39,7 @@
type: str
interface:
description: Interface
required: true
required: True
type: str
vhid:
description: VHID Group
Expand All @@ -65,14 +65,14 @@
description: Address Type
required: false
type: str
choices: ['single']
choices: [ "single" ]
default: single
subnet_bits
subnet_bits:
description: Network's subnet mask
required: false
type: int
default: 32
subnet
subnet:
description: Network subnet
required: false
type: str
Expand Down Expand Up @@ -117,7 +117,7 @@
password=dict(required=False, type='str'),
uniqid=dict(required=False, type='str'),
descr=dict(required=False, type='str'),
type=dict(required=False, type='str', default='single'),
type=dict(required=False, type='str', choices=['single'], default='single'),
subnet_bits=dict(required=False, type='int', default=32),
subnet=dict(required=False, type='str'),
state=dict(default='present', choices=['present', 'absent'], type='str'),
Expand Down

0 comments on commit 246b6d6

Please sign in to comment.