Skip to content

Instantly share code, notes, and snippets.

@GeoffWilliams
Created December 23, 2019 02:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GeoffWilliams/3fb51dc2e937da9d40dab69191cb764e to your computer and use it in GitHub Desktop.
Save GeoffWilliams/3fb51dc2e937da9d40dab69191cb764e to your computer and use it in GitHub Desktop.
ansible playbook to install aws ssm on debian
---
- name: install ssm
hosts: all
tasks:
- name: script
shell: >
wget https://s3.amazonaws.com/ec2-downloads-windows/SSMAgent/latest/debian_amd64/amazon-ssm-agent.deb &&
sudo dpkg -i amazon-ssm-agent.deb &&
sudo systemctl enable amazon-ssm-agent
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment