fixed doc issues with cloudstack_fw
This commit is contained in:
parent
1754c7a1ca
commit
eb04e45311
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