mg03
mg03

Reputation: 767

Ansible EC2 add multiple hosts

trying to find and add hosts dynamically like so

---

- hosts: localhost
  gather_facts: no
  tasks:
    - name: Gather EC2 remote facts.
      ec2_remote_facts:
        region: 'us-east-1'
        register: ec2_remote_facts
    - name: Debug.
      debug:
        msg: "{{ ec2_remote_facts }}"
    - name: get instances for tags 
      add_host:
        name: "{{ item }}"
        group: dynamically_created_hosts
      with_items: |
        "{{ ec2_remote_facts.instances | 
            selectattr('tags.AppName', 'defined') | selectattr('tags.AppName', 'equalto', 'sql') | 
            selectattr('tags.AppType', 'defined') | selectattr('tags.AppType', 'equalto', 'infra') |
            map(attribute='private_ip_address') | list }}"

- hosts: 
  - dynamically_created_hosts
  become: yes
  become_user: root
  serial: 1
  vars_files:
    - group_vars/all
  tasks:
    - name: run command
      shell: "uname -a"

I get following when i run in verbose mode

TASK [get instances for tags] **************************************************
task path: /Users/me/gitfork2/fornax/dynhst.yml:39
creating host via 'add_host': hostname="[u'10.112.114.241']"
changed: [localhost] => (item="[u'10.112.114.241']") => {"add_host": {"groups": ["dynamically_created_hosts"], "host_name": "\"[u'10.112.114.241']\"", "host_vars": {"group": "dynamically_created_hosts"}}, "changed": true, "invocation": {"module_args": {"group": "dynamically_created_hosts", "hostname": "\"[u'10.112.114.241']\""}, "module_name": "add_host"}, "item": "\"[u'10.112.114.241']\""}

PLAY [dynamically_created_hosts] ***********************************************

TASK [setup] *******************************************************************
<"[u'10.112.114.241']"> ESTABLISH SSH CONNECTION FOR USER: None
<"[u'10.112.114.241']"> SSH: ansible.cfg set ssh_args: (-F)(/Users/me/.ssh/config)
<"[u'10.112.114.241']"> SSH: ANSIBLE_HOST_KEY_CHECKING/host_key_checking disabled: (-o)(StrictHostKeyChecking=no)
<"[u'10.112.114.241']"> SSH: ansible_password/ansible_ssh_pass not set: (-o)(KbdInteractiveAuthentication=no)(-o)(PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey)(-o)(PasswordAuthentication=no)
<"[u'10.112.114.241']"> SSH: ANSIBLE_TIMEOUT/timeout set: (-o)(ConnectTimeout=10)
<"[u'10.112.114.241']"> SSH: PlayContext set ssh_common_args: ()
<"[u'10.112.114.241']"> SSH: PlayContext set ssh_extra_args: ()
<"[u'10.112.114.241']"> SSH: EXEC ssh -C -vvv -F /Users/me/.ssh/config -o StrictHostKeyChecking=no -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 '"[u'"'"'10.112.114.241'"'"']"' '/bin/sh -c '"'"'( umask 77 && mkdir -p "` echo $HOME/.ansible/tmp/ansible-tmp-1509843772.58-176166317659656 `" && echo ansible-tmp-1509843772.58-176166317659656="` echo $HOME/.ansible/tmp/ansible-tmp-1509843772.58-176166317659656 `" ) && sleep 0'"'"''
fatal: ["[u'10.112.114.241']"]: UNREACHABLE! => {"changed": false, "msg": "Failed to connect to the host via ssh.", "unreachable": true}
    to retry, use: --limit @./dynhst.retry

The odd thing here I see is

SSH: EXEC ssh -C -vvv -F /Users/me/.ssh/config -o StrictHostKeyChecking=no -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 '"[u'"'"'10.112.114.241'"'"']"' '/bin/sh -c '"'"'( umask 77 && mkdir -p "` echo $HOME/.ansible/tmp/ansible-tmp-1509843772.58-176166317659656 `" && echo ansible-tmp-1509843772.58-176166317659656="` echo $HOME/.ansible/tmp/ansible-tmp-1509843772.58-176166317659656 `" ) && sleep 0'"'"''

Seems like it is trying to ssh into '"[u'"'"'10.112.114.241'"'"']"' ... seems like the dynamically_created_hosts is being used as a string and not as a list

Any ideas why?

Upvotes: 0

Views: 228

Answers (1)

techraf
techraf

Reputation: 68619

You pass a list (of IP addresses) to an argument name which requires a string:

hostname="[u'10.112.114.241']"

[ ] is a JSON representation of a list (single element in the example above).


If you want the first address from the list (and there seems to be no more for any of your hosts), then:

add_host:
  name: "{{ item[0] }}"
  group: dynamically_created_hosts
  with_items: ...

Upvotes: 1

Related Questions