Save products you love by clicking the heart icon.
Terraform, Ansible, and Systemd — IaC and provisioning reference sheets for production
Three cheatsheets covering the infrastructure-as-code and provisioning tools every DevOps engineer works with daily.
€14.00
# hosts.ini
[webservers]
web01.example.com
web02.example.com
[dbservers]
db01.example.com
# \[all:vars\]
# ansible_user=ubuntu
# ansible_ssh_private_key_file=~/.ssh/id_rsa
# Test connectivity to all hosts
ansible all -i hosts.ini -m ping
# Run a playbook
ansible-playbook -i hosts.ini deploy.yml