6-Day3-1-Variables
Lab Exercise: Types of Variables and Their Hierarchy
Lab 1.1: Group Variables in Inventory
[web_servers] web1 ansible_host=192.168.1.10 ansible_user=ec2-user web2 ansible_host=192.168.1.11 ansible_user=ec2-user [web_servers:vars] website_port=8080 website_content="Content from group variables"
- name: Group Variables Demo hosts: web_servers tasks: - name: Display website_port from group variables debug: msg: "Website Port: {{ website_port }}" - name: Display website_content from group variables debug: msg: "Website Content: {{ website_content }}"
ansible-playbook ~/day3/group_variables.yaml -i ~/day3/inventory.ini
Lab 1.2: Host Variables in Inventory
Lab 1.3: Play and Task Variables
Lab 1.4: Extra Vars Precedence
Outcome of Labs:
Last updated