if i understand correctly, you are setting my_int_if: eth1 and then
setting my_int_ip: "{{ ansible_eth1.ipv4.address }}" which is always
hardcoded to eth1.

i think what you would want is
in group_vars/all

my_int_if: eth1

and reference it in template and other places via:

bind-address={{ hostvars[inventory_hostname]['ansible_' +
my_int].ipv4.address }}

and in playbook as

host={{ hostvars[item]['ansible_' + my_int].ipv4.address }}




On Fri, May 29, 2015 at 10:12 AM, t goto <[email protected]> wrote:

> Hello, ansible experts.
>
> I'm trying to parameterize eth interface in `group_vars/all` so that I can
> use it in playbook easier.
>
> group_vars/all file looks like this.
>
> my_int_if: eth1
> my_int_ip: "{{ ansible_eth1.ipv4.address }}"
> my_int_obj: "{{ ansible_eth1 }}"
>
>
>
> I could successfuly use those variables with following playbook and
> template file.
>
> - name: copy mysql file
>   tempalte: src=galera.cnf.j2 dest=/etc/my.cnf.d/galera.cnf
>
>
> bind-address={{ my_int_ip }}
>   # becomes this as intended.
> bind-address=192.168.50.126
>
>
>
> But now, when I tried to use "{{my_int_ip}}" from playbook directly, It
> didin't work as intended.
>
>
> - name: galera cluster replication bluh
>   mysql_user:
>     name: wsrep_sst-user
>     host: "{{ hostvars[item].my_int_ip }}"
>     password: password
>     priv: "*.*:ALL"
>   with_items: play_hosts
>
>
> According to the Error message, it looked like this variable was not
> expanded well.
>
> msg: (1396, "Operation CREATE USER failed for 'wsrep_sst-user'@'{#
> ansible_eth1.ipv4.address #}'")
>
>
> I would like to know why I could use it at template, and not at playbook.
>
> And if you have any good advice to parameterize the ethernet for firewall,
> bind address, and etc., please show me!!
>
> Thank you!
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Ansible Project" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To post to this group, send email to [email protected].
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/ansible-project/e1878684-f0cd-46b7-b268-34c566a2284f%40googlegroups.com
> <https://groups.google.com/d/msgid/ansible-project/e1878684-f0cd-46b7-b268-34c566a2284f%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/CAFUV_d6_ZfZgNKsg9NNafm%2Buo5uPO1uz_kCQA1FUH8sVZVqzBA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to