vars /etc/ansible/hosts

Michael,
Thank you for your answer. I have attached the files - https://gist.github.com/anonymous/5252645
Actually, I do not know is this a problem or not.
But when I do the the following in the inventory file (/etc/ansible/hosts):

[servers]
10.132.219.68
10.132.219.60

[servers:vars]
myuser=11111111111111
password=123123

[crmweb]
10.132.219.68

[crmweb:vars]
myuser=77777777777777777777
password=123123

Ansible does not see the second value (myuser=77777777777777777777)

You are defininig the same variable twice, with different values for the server 10.132.219.68 Only one instance of that variable is taken into account.
So the first instance overrules the second one.