From 1fb035a346019cc506b606641cb4ee351c815120 Mon Sep 17 00:00:00 2001 From: xiaclo Date: Fri, 1 May 2015 12:28:47 +1000 Subject: [PATCH] Update route53.py --- cloud/amazon/route53.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud/amazon/route53.py b/cloud/amazon/route53.py index c9463f20729..d6c758b3974 100644 --- a/cloud/amazon/route53.py +++ b/cloud/amazon/route53.py @@ -209,7 +209,7 @@ def main(): command_in = module.params.get('command') zone_in = module.params.get('zone').lower() - ttl_in = int(module.params.get('ttl')) + ttl_in = module.params.get('ttl') record_in = module.params.get('record').lower() type_in = module.params.get('type') value_in = module.params.get('value')