Can i do this in my hosts/inventory file? Also, can i pass a host group in command line -e?
[env1]
vm1 ansible_host=vm001
vm2 ansible_host=vm002
[env2]
vm1 ansible_host=vm888
vm2 ansible_host=vm999
I want to use the same synonym host name in my playbook (vm1 or vm2 ) but point to different virtual machine depending on what group i specify in the yml file. (hosts: env1)
This way i can make the code generic across groups with the same vm1 or vm2. I have duplicate VMs for testing and development.
thanks