© 2023 Hashnode
#ansible-playbook
Ansible is an open-source automation platform that can help you manage and control various nodes from a central location. It allows you to automate tasks, including configuration management, applicati…
Welcome to my second blog on Ansible. Ansible is DevOps and Configuration management tool. so first we need to understand What DevOps is and what configuration management is. DevOps - Simply DevOps is…
How to Create a Server in AWS? How to get into the server? How to Create users in linux? Make normal users as sudoer Ssh password authentication? CM Ansible : We can execute any linux commands …
- hosts: ec2 gather_facts: false tasks: -name: Add SSH key to EC2 instance ec2_key: name: my_key key_material: "{{ lookup('file', '/path/to/my_key.pem') }}" region: us-eas…
Module 1: Package management There is a module for the most popular package managers, such as DNF and APT, to enable us to install any package on a system. Functionality depends entirely on the packag…
Goals To have a Knowledge of Ansible To Understand the purpose of Ansible Modules To Differentiate between Shell and Command Modules Introduction Ansible is a software configuration and automation t…