Skip to content

Contact sales

By filling out this form and clicking submit, you acknowledge our privacy policy.
  • Labs icon Lab
  • A Cloud Guru
Google Cloud Platform icon
Labs

Working with Ansible Templates, Variables, and Facts

Besides being an objective on the Red Hat Certified Ansible Specialist Exam, a demonstrated ability to use Ansible templates, variables, and facts is essential to practical systems deployment through Ansible. Templates allow for a streamlined approach to configuration management that reduces configuration error and simplifies system upkeep. This learning activity starts a student on a path from basic Ansible knowledge to a strong working knowledge that is necessary for real-world application. *This course is not approved or sponsored by Red Hat.*

Google Cloud Platform icon
Labs

Path Info

Level
Clock icon Intermediate
Duration
Clock icon 1h 0m
Published
Clock icon Jul 11, 2018

Contact sales

By filling out this form and clicking submit, you acknowledge our privacy policy.

Table of Contents

  1. Challenge

    Create a Template *sudoers* File in `/home/ansible/hardened.j2` That Produces a File with Appropriate Output for Each Host

    touch /home/ansible/hardened.j2

  2. Challenge

    The Deployed File Should Resemble the Example File Except with the *IP* and *hostnames* Customized Appropriately

    Edit hardened.j2 to contain the following text:

        %sysops {{ ansible_default_ipv4.address }} = (ALL) ALL
        Host_Alias WEBSERVERS = {{ groups['web']|join(', ') }}
        Host_Alias DBSERVERS = {{ groups['database']|join(', ') }} 
        %httpd WEBSERVERS = /bin/su - webuser
        %dba DBSERVERS = /bin/su - dbuser
    
  3. Challenge

    Create a Playbook in `/home/ansible/security.yml` That Uses the Template Module to Deploy the Template on All Servers in the Default Ansible Inventory After Validating the Syntax of the Generated File

    Edit /home/ansible/security.yml to contain the following:

    ---
    - hosts: all
      become: yes
      tasks:
      - name: deploy sudo template
        template:
          src: /home/ansible/hardened.j2
          dest: /etc/sudoers.d/hardened
          validate: /sbin/visudo -cf %s
    
  4. Challenge

    Run the Playbook and Ensure the Files Are Correctly Deployed

    ansible-playbook /home/ansible/security.yml

    Check the local /etc/sudoers.d/hardened on the ansible control node for the correct contents.

The Cloud Content team comprises subject matter experts hyper focused on services offered by the leading cloud vendors (AWS, GCP, and Azure), as well as cloud-related technologies such as Linux and DevOps. The team is thrilled to share their knowledge to help you build modern tech solutions from the ground up, secure and optimize your environments, and so much more!

What's a lab?

Hands-on Labs are real environments created by industry experts to help you learn. These environments help you gain knowledge and experience, practice without compromising your system, test without risk, destroy without fear, and let you learn from your mistakes. Hands-on Labs: practice your skills before delivering in the real world.

Provided environment for hands-on practice

We will provide the credentials and environment necessary for you to practice right within your browser.

Guided walkthrough

Follow along with the author’s guided walkthrough and build something new in your provided environment!

Did you know?

On average, you retain 75% more of your learning if you get time for practice.

Start learning by doing today

View Plans