Commit 8257d6fe by Kevin Falcone Committed by GitHub

Merge pull request #3438 from edx/jibsheet/playbook-for-running-security-role

Simple playbook to take security updates on hosts
parents 2d4df752 8645000f
# 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