Use int in the parameter list instead of casting

pull/18777/head
Monty Taylor 9 years ago committed by Matt Clay
parent 2c3fc61357
commit 4f2028439f

@ -96,8 +96,8 @@ def _find_matching_rule(module, secgroup):
:returns: The matching rule dict, or None if no matches. :returns: The matching rule dict, or None if no matches.
""" """
protocol = module.params['protocol'] protocol = module.params['protocol']
port_range_min = int(module.params['port_range_min']) port_range_min = module.params['port_range_min']
port_range_max = int(module.params['port_range_max']) port_range_max = module.params['port_range_max']
remote_ip_prefix = module.params['remote_ip_prefix'] remote_ip_prefix = module.params['remote_ip_prefix']
ethertype = module.params['ethertype'] ethertype = module.params['ethertype']
direction = module.params['direction'] direction = module.params['direction']
@ -145,8 +145,8 @@ def main():
security_group = dict(required=True), security_group = dict(required=True),
protocol = dict(default='tcp', protocol = dict(default='tcp',
choices=['tcp', 'udp', 'icmp']), choices=['tcp', 'udp', 'icmp']),
port_range_min = dict(required=True), port_range_min = dict(required=True, type='int'),
port_range_max = dict(required=True), port_range_max = dict(required=True, type='int'),
remote_ip_prefix = dict(required=False, default=None), remote_ip_prefix = dict(required=False, default=None),
# TODO(mordred): Make remote_group handle name and id # TODO(mordred): Make remote_group handle name and id
remote_group = dict(required=False, default=None), remote_group = dict(required=False, default=None),

Loading…
Cancel
Save