Skip to content

Instantly share code, notes, and snippets.

@tom-butler
Created December 8, 2017 02:31
Show Gist options
  • Save tom-butler/6a28f41d0e61978a2c7a7f3dbd8d1802 to your computer and use it in GitHub Desktop.
Save tom-butler/6a28f41d0e61978a2c7a7f3dbd8d1802 to your computer and use it in GitHub Desktop.
install-ssm-agent-ubuntu
#!/bin/bash
# SSM agent
sudo apt-get update && sudo apt-get install -y build-essential
curl https://amazon-ssm-ap-southeast-2.s3.amazonaws.com/latest/debian_amd64/amazon-ssm-agent.deb -o /tmp/amazon-ssm-agent.deb
sudo dpkg -i /tmp/amazon-ssm-agent.deb
sudo systemctl start amazon-ssm-agent
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment