Created
December 30, 2021 05:30
-
-
Save markymarkus/c28cb92889d6826eca1fe551a1088a98 to your computer and use it in GitHub Desktop.
Install SSM Agent to Debian instance
This file contains 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
UserData: | |
Fn::Base64: | |
!Sub | | |
#!/bin/bash | |
cd /tmp | |
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 | |
sudo systemctl start amazon-ssm-agent |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment