Ansible playbooks are a powerful tool for automating configuration, deployment, and orchestration tasks across your infrastructure. Written in YAML, these playbooks allow you to describe your automation jobs in simple, human-readable language. This guide provides an overview of playbook structure, common components, and best practices for building effective Ansible playbooks.
An Ansible playbook is a YAML file that defines a series of tasks to be executed on remote hosts. It consists of one or more plays
that map a group of hosts to roles, tasks, and variables. Playbooks enable you to automate complex workflows in a consistent and repeatable way.
A simple playbook starts with the YAML document marker (---
) and typically includes key sections such as hosts
, vars
, and tasks
. Below is an example of a basic playbook:
---
- name: Basic Playbook Example
hosts: webservers
become: yes
vars:
http_port: 80
tasks:
- name: Install Apache
apt:
name: apache2
state: present
- name: Start Apache Service
service:
name: apache2
state: started
Component | Description |
---|---|
hosts |
Specifies the target group of hosts for the play. |
become |
Indicates whether to use privilege escalation (e.g., sudo). |
vars |
Defines variables to be used within the playbook. |
tasks |
Lists the individual tasks to be executed on the target hosts. |
handlers |
Special tasks that are triggered by notifications from other tasks. |
roles |
Organizes tasks, variables, and files into reusable components. |
Modules are the building blocks of tasks in a playbook. Some of the most frequently used modules include:
Module | Description |
---|---|
apt |
Manages packages on Debian-based systems. |
yum |
Manages packages on Red Hat-based systems. |
service |
Manages services (start, stop, restart). |
copy |
Copies files from the control machine to remote hosts. |
template |
Renders Jinja2 templates and copies them to remote hosts. |
command |
Executes commands on remote hosts without shell processing. |
shell |
Executes commands on remote hosts using the shell. |
Variables allow you to create dynamic playbooks. They can be defined within the playbook, in inventory files, or passed via the command line. Conditionals can control task execution based on variable values.
Example: Run a task only if the variable install_apache
is set to true
:
- name: Install Apache if enabled
apt:
name: apache2
state: present
when: install_apache | default(false)
Loops are useful for applying a task to multiple items. They simplify repetitive tasks like installing several packages.
Example: Install a list of packages:
- name: Install multiple packages
apt:
name: "{{ item }}"
state: present
loop:
- git
- curl
- vim
Handlers are special tasks that only run when notified by other tasks. They are commonly used for actions such as restarting a service after a configuration change.
Example:
- name: Update configuration file
copy:
src: myconfig.conf
dest: /etc/myapp/config.conf
notify: Restart MyApp
handlers:
- name: Restart MyApp
service:
name: myapp
state: restarted
To execute your playbook, use the ansible-playbook
command:
ansible-playbook -i inventory_file playbook.yml
Ansible playbooks empower you to automate repetitive tasks and manage your infrastructure efficiently. By mastering the basic structure, using common modules, and following best practices, you can create robust and maintainable automation scripts that simplify your IT operations.