Setup vim to have 2 spaces when tab pressed
vim ~/.vimrc
autocmd FileType yaml setlocal ai ts=2 sw=2 et
Verify syntax of playbook
ansible-playbook –syntax-check myplaybook.yaml
Limit execution to only certain hosts
ansible-playbook -i inventory/inv.yaml myplaybook.yaml –limit host1