mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
fixed doc issues with cloudstack_fw
This commit is contained in:
parent
312814c51b
commit
346e34ac79
1 changed files with 5 additions and 8 deletions
|
@ -45,23 +45,23 @@ options:
|
|||
description:
|
||||
- CIDR (full notation) to be used for firewall rule.
|
||||
required: false
|
||||
default: '0.0.0.0\0'
|
||||
start_port
|
||||
default: '0.0.0.0/0'
|
||||
start_port:
|
||||
description:
|
||||
- Start port for this rule. Considered if C(protocol=tcp) or C(protocol=udp).
|
||||
required: false
|
||||
default: null
|
||||
end_port
|
||||
end_port:
|
||||
description:
|
||||
- End port for this rule. Considered if C(protocol=tcp) or C(protocol=udp).
|
||||
required: false
|
||||
default: null
|
||||
icmp_type
|
||||
icmp_type:
|
||||
description:
|
||||
- Type of the icmp message being sent. Considered if C(protocol=icmp).
|
||||
required: false
|
||||
default: null
|
||||
icmp_code
|
||||
icmp_code:
|
||||
description:
|
||||
- Error code for this icmp message. Considered if C(protocol=icmp).
|
||||
required: false
|
||||
|
@ -106,9 +106,6 @@ EXAMPLES = '''
|
|||
state: absent
|
||||
'''
|
||||
|
||||
RETURN = '''
|
||||
'''
|
||||
|
||||
try:
|
||||
from cs import CloudStack, CloudStackException, read_config
|
||||
has_lib_cs = True
|
||||
|
|
Loading…
Reference in a new issue