exam 5
02- 03
- 04
- 05
A cli tool called awscli
has been installed using pip3
, and its out of date on remote servers. Ensure that it is updated to the latest version.
Write a playbook /home/thor/playbooks/update_version.yml
to update aws cli to the latest version. Use inventory /home/thor/playbooks/inventory
=========================================
---
- hosts: all
gather_facts: no
tasks:
- pip:
name: awscli
state: latest
executable: pip3
~
Comments
Post a Comment