File size: 342 Bytes
8b058a4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
- name: Setup Ansible
  block:
    - name: Install Ansible and dependencies
      apt:
        name:
          - ansible
          - git
          - python3-pip
        state: present
        update_cache: yes
    - name: Install required Python packages
      pip:
        name:
          - boto3
          - botocore
        state: present