How do hosts: webservers and hosts: "*.lab.net" differ in an Ansible play?
hosts: webservers
hosts: "*.lab.net"
The first targets one server; the second automatically targets every inventory host
The first targets an inventory group; the second targets inventory hostnames matching the wildcard
The first always runs locally; the second always uses SSH
The first selects a module; the second selects a task file