Get started with Automation with our tutorials on Ansible and Terraform.

All HowTo's Ansible & Terraform Automation Linux

Ansible AWX Targeting Windows via SSH – The details you might have missed

This article highlights some important details for those working with Ansible AWX. Specifically, when the target system/s are Windows based. The two options to target a Windows host is WinRM and SSH. SSH is easier. It just requires the OpenSSH Server “feature” to be installed which is a simple process.

Read more
All HowTo's Ansible & Terraform Automation Linux Redhat, Fedora and CentOS Linux Ubuntu, Mint & Debian Linux

Terraform – Getting Started – The Important Details You Need To Know

This article guides you through the process of installing Terraform, and running Terraform on your AWS environment for the first time. There’s plenty you need to know to prevent destroying your (or someone else’s) network and resources. I’ve added those issues and solutions to the bottom of this article. Install

Read more
All HowTo's Ansible & Terraform Automation Linux Redhat, Fedora and CentOS Linux Ubuntu, Mint & Debian Linux

Installing Redhat Ansible Automation Platform

This article holds my notes from when I recently tested the Redhat Ansible Automation Platform. I’ve included answers to the questions I had at the start and during my effort to install the system. You need to install this on a Redhat Enterprise Linux v8.4 server, or newer. You don’t

Read more
All HowTo's Ansible & Terraform Automation Linux Scripting in Bash Ubuntu, Mint & Debian Linux

Ansible To Get Linux OS Version Details

This article shows the Ansible playbook used to query target systems to get their version details. Ie, the details obtained from “/etc/*release”. — – hosts: all # remote_user: root # become: yes tasks: – debug: msg: – “ansible_distribution {{ hostvars[inventory_hostname].ansible_distribution }}” – “major version {{ hostvars[inventory_hostname].ansible_distribution_major_version }}” – “version {{

Read more
AGIX Discussion All HowTo's Ansible & Terraform Automation Linux Redhat, Fedora and CentOS Linux Ubuntu, Mint & Debian Linux Web Servers

Manage Everything With Ansible

Ansible is a buzz word at the moment. Ever since Redhat purchased Ansible back in 2016, it has been rare to hear about anyone deploying alternative automation systems. Recently Ansible has been commercialized into Ansible Tower allowing a wider audience to take advantage of the benefits of automation. I recently

Read more
All HowTo's Ansible & Terraform Automation Cybersecurity Linux Redhat, Fedora and CentOS Linux

Install ClamAV on CentOS 7 with Ansible

This HowTo shows how to install ClamAV and schedule scans using Ansible. There are Ansible modules for this but it’s so simple that you might as well just do it yourself. Create your playbook. Put the following into a file called “ansible-play-install-clamav.yml”. — – hosts: all sudo: yes tasks: –

Read more