Merge pull request #963 from sgzijl/391-append-missing-dot

issue #931 append dot to zone if not defined
reviewable/pr18780/r1
Greg DeKoenigsberg 9 years ago
commit ed2708827d

@ -82,6 +82,9 @@ def main():
vpc_region = module.params.get('vpc_region')
comment = module.params.get('comment')
if zone_in[-1:] != '.':
zone_in += "."
private_zone = vpc_id is not None and vpc_region is not None
_, _, aws_connect_kwargs = get_aws_connection_info(module)

Loading…
Cancel
Save