diff --git a/tasks/main.yml b/tasks/main.yml index c619fd8..a7301a3 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -11,8 +11,8 @@ overwrite: "{{ aws_route53_overwrite | default(omit) }}" retry_interval: "{{ aws_route53_retry | default(omit) }}" when: aws_route53_value | default("") != "" and aws_route53_value is string - -- debug: var=aws_route53_value + connection: local + delegate_to: localhost - name: Update a multi DNS records route53: @@ -26,3 +26,5 @@ retry_interval: "{{ item.retry | default(omit) }}" with_items: "{{ aws_route53_value }}" when: aws_route53_value | default("") != "" and aws_route53_value is iterable and aws_route53_value is not string + connection: local + delegate_to: localhost