Here is inventory file.
[abc]
host1
host2
[123]
host3
And main.yml
#play1
- hosts: abc
roles:
- { role: abc }
tasks:
...
#play2
- hosts: 123
roles:
- { role: 123 }
tasks:
debug: msg="{{inventory_hostname}}"
Basically I need to run some commands in host3 and the commands need host1 and host2 in it. So how can I get host1 and host2 which are in group abc into play2 debug: msg="{{inventory_hostname}}"
, I know inventory_hostname is getting host3. is there any other way I can get only host1 and host2. Let me know if I'm not clear.
Thanks in Advance.,