Category: Ansible Playbook Examples

How to create inline dictionary variables?

How to create inline dictionary variables?

tutadmin
October 9, 2020

How to create and access inline dictionary variables in ansible playbook

Create a ansible config file as ansible.cfg file in your directory: Create a hosts file as hosts in the same directory Create a playbook called as inline_dict_variables_playbook.yml Full Source Code Also Available in : https://github.com/tamiltutera/example-ansible-variables

tutadmin

How to create and access dictionary variables in ansible playbook

Create a ansible config file as ansible.cfg file in your directory: [defaults] inventory = hosts  Create a hosts file as hosts in the same directory [webservers] ansnode1 ansible_ssh_host=192.168.56.202 ansible_python_interpreter=/usr/bin/python ansnode2 ansible_ssh_host=192.168.56.203 ansible_python_interpreter=/usr/bin/python [webservers:vars] ansible_port=22 http_port=8080 [dbservers] ansnode3 ansible_ssh_host=192.168.56.204 ansible_python_interpreter=/usr/bin/python ansnode4 ansible_ssh_host=192.168.56.205 ansible_python_interpreter=/usr/bin/python [dev:children] webservers dbservers Create a dictionary variables in playbook as dict_variables_playbook.yaml — # […]

tutadmin

How to create ansible variables in ansible playbook basic example

Create a ansible config file as ansible.cfg file in your directory: [defaults] inventory = hosts  Create a hosts file as hosts in the same directory [webservers] ansnode1 ansible_ssh_host=192.168.56.202 ansible_python_interpreter=/usr/bin/python ansnode2 ansible_ssh_host=192.168.56.203 ansible_python_interpreter=/usr/bin/python [webservers:vars] ansible_port=22 http_port=8080 [dbservers] ansnode3 ansible_ssh_host=192.168.56.204 ansible_python_interpreter=/usr/bin/python ansnode4 ansible_ssh_host=192.168.56.205 ansible_python_interpreter=/usr/bin/python [dev:children] webservers dbservers Create a example variables playbook yaml file as variables_playbook.yml in […]

tutadmin

How to use “pause” module in ansible playbook?

How to use “pause” module in ansible playbook? Here is the sample code for pause playbook module in ansible module example — # YAML documents begin with the document separator — # the minus in YAML this indicates a list item. The playbook contains a list # of plays, with each play being a dictionary […]

tutadmin
October 7, 2020

How to use “set_facts” in playbook example-03?

How to use “set_facts” in playbook example-03?

tutadmin
October 6, 2020

How to use “set_facts” module in ansible playbook example-02?

How to use “set_facts” module in ansible playbook example-02? Here is the code to know about the set_facts playbook module in ansible with examples 02 : — # YAML documents begin with the document separator — # the minus in YAML this indicates a list item. The playbook contains a list # of plays, with […]

tutadmin

How to use “set_facts” module in ansible playbook example-01?

How to use “set_facts” module in ansible playbook example-01? Here is the code to know about the set_facts playbook module in ansible example 01 : — # YAML documents begin with the document separator — # the minus in YAML this indicates a list item. The playbook contains a list # of plays, with each play being a dictionary –   # Target: where our play will run and options it will run with   hosts: localhost   # Task: the list of tasks that will be executed within the play, this section   # can also be used for pre and post tasks   tasks:     – name: set a fact       set_fact:         our_fact: Ansible Rocks!     – name: show custom fact       debug:         msg: “{{ our_fact }}” # three dots indicate the end of a YAML document …  

tutadmin
Become a Subscriber
Get the Notify on latest Videos in your Desktop and Mobile . We never spam!