mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
23 lines
580 B
YAML
23 lines
580 B
YAML
---
|
|
# Example playbook to demonstrate the group_by action plugin.
|
|
|
|
- hosts: all
|
|
# This runs the setup module to gather facts
|
|
tasks:
|
|
# Use the ansible_machine variable to create a group for every value,
|
|
# prefix the group name with 'ansible-'
|
|
- action: group_by key=ansible-${ansible_machine}
|
|
|
|
- hosts: ansible-x86_64
|
|
tasks:
|
|
# Run ping on all x86_64 machines
|
|
- action: ping
|
|
|
|
- hosts: all
|
|
tasks:
|
|
# Create a group of all kvm hosts
|
|
- action: group_by key=${ansible_virtualization_type}-${ansible_virtualization_role}
|
|
|
|
- hosts: kvm-host
|
|
tasks:
|
|
- action: ping
|