Working with include and import module in Ansible
By admin
In this section we will use include and import module to add another tasks or complete playbook into another playbook. include module Use include ...
By admin
In this section we will use include and import module to add another tasks or complete playbook into another playbook. include module Use include ...
By admin
What is Ansible Block? In Ansible, a block is a grouping mechanism for multiple tasks. It allows you to apply particular directives, like error handling ...
By admin
Ansible tags are another great feature which can help you execute respective tasks from the playbook. By default all the tasks from the playbook are ...
By admin
Oftentimes, we will want to perform a single task, but use that single task to iterate over a set of data. For example, you might ...
By admin
Sometimes you want a task to run only when a change is made on a machine. For example, you may want to restart a service ...
By admin
Control structures refer to anything and everything that have an effect on a program's execution flow. Control structures are mainly of the following two types: ...
By admin
In this section we will learn about different operators we can use with Ansible playbooks to perform different tasks. For mathematical operations we can use ...
By admin
Now that you are familiar with writing ansible playbooks, in this section we will use Visual Studio Code Editor to write playbooks instead of CLI. ...
By admin
Overview on Ansible In one liner "Ansible is a super-simple automation platform that is agentless and extensible." It is an open source tool (with enterprise ...
By admin
What are Ansible Playbooks Ansible playbooks are text files or configuration files that are written in particular format called YAML. These are expressed in the ...
By admin
What is YAML? YAML Ain’t Markup Language (YAML) is often called a data serialization language. It was intended to be human-readable and organize data into ...
By admin
Ansible is not a full-fledged programming language, but it does have several programming language features, and one of the most important of these is variable ...
By admin
Ansible facts is a term used for system information of the managed nodes. Now the system information could be about OS distribution, release, processor, IP ...