Re: [ansible-project] Issues in creating AWS EFS via Ansible

2018-09-08 Thread Jonathan Lozada De La Matta
you might also need to add connection: local On Sat, Sep 8, 2018 at 10:44 AM Karl Auer wrote: > This looks as if you are trying to connect to your own host using ssh in > order to run your playbook. This is almost certainly not necessary - add > these lines after your "hosts" line,making sure

Re: [ansible-project] Issues in creating AWS EFS via Ansible

2018-09-08 Thread Karl Auer
This looks as if you are trying to connect to your own host using ssh in order to run your playbook. This is almost certainly not necessary - add these lines after your "hosts" line,making sure to get the indentation right: become: false gather_facts: false The first line says not to try to

[ansible-project] Issues in creating AWS EFS via Ansible

2018-09-06 Thread Pravin Patil
I am creating a playbook to create a EFS in AWS, using Ansible, but running into errors. Please suggest how to resolve this error. *Below is my ansible script:* --- - hosts: localhost vars: efs_name: "{{efs_name}}" efs_tagname: "{{efs_tagname}}" efs_purpose: "{{efs_purpose}}"