diff --git a/lib/ansible/modules/extras/cloud/cloudstack/cloudstack_fw.py b/lib/ansible/modules/extras/cloud/cloudstack/cloudstack_fw.py index 0014f433c4..cb60c1cde6 100644 --- a/lib/ansible/modules/extras/cloud/cloudstack/cloudstack_fw.py +++ b/lib/ansible/modules/extras/cloud/cloudstack/cloudstack_fw.py @@ -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