Created
December 23, 2019 02:23
-
-
Save GeoffWilliams/3fb51dc2e937da9d40dab69191cb764e to your computer and use it in GitHub Desktop.
ansible playbook to install aws ssm on debian
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- 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