Commit 8645000f by Kevin Falcone

Simple playbook to take security updates on hosts

parent d0d7be31
# Applies the security role to a set of inventories. Ensures that security updates
# are taken on these machines.
#
# This is useful if you have a set of deployed instances that are not periodically
# upgraded via replacement (such as your persistence layers).
#
# ansible-playbook -v -i ec2.py, apply-security.yml -limit tag_Name_Snowflake
# ansible-playbook -v -i hostname, apply-security.yml
- name: Apply security updates
hosts: all
gather_facts: True
become: True
vars:
SECURITY_UPGRADE_ON_ANSIBLE: true
roles:
- security
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment