i'm trying to run a few bash commands/scripts in AWS' Systems Manager using an automation document.
below are my settings in the automation document.
There is no way for me to define what type of string it is.
here's a printout of the code. i was told by aws to put ' at the beginning and end of it.
'#### errocodes'
'#### 0 hanadb state = OK'
'#### 10 hanadb state = STOPPED'
'#### 20 hanadb state = WARNING'
'#### 30 hanadb state = ERROR'
''
'# stop hana db'
'echo "Stopping Hana DB"'
'sudo /usr/sap/hostctrl/exe/sapcontrol -nr 00 -function Stop'
''
'# check hana db state'
'echo "Checking if Hana DB is running."'
'HANADBSTATUS=`sudo /usr/sap/hostctrl/exe/sapcontrol -nr 00 -function GetProcessList`'
'sleep 20'
'if [[ "$HANADBSTATUS" =~ "GRAY" ]]'
'then'
' echo "Hana DB is stopped."'
' exit 10'
'else'
'i=1'
'while [[ ! "$HANADBSTATUS" =~ "GRAY" ]] && [[ "$i" -lt 11 ]]'
' do'
' echo "Warning: HANA DB is running. Checking 10 times with 20 second intervalls until script aborts. This is check $i." '
' sudo /usr/sap/hostctrl/exe/sapcontrol -nr 00 -function Stop'
' sleep 20'
' # check db state again'
' HANADBSTATUS=`sudo /usr/sap/hostctrl/exe/sapcontrol -nr 00 -function GetProcessList`'
' ((i++))'
' if [ "$i" = 10 ]'
' then'
' echo "Error: retried $i-Times. Couldnt stop DB. Exiting Script."'
' echo "Script aborts with Error 0"'
' exit 0'
' fi'
' done'
' if [[ "$HANADBSTATUS" =~ "GRAY" ]]'
' then'
' echo "Hana DB is stopped."'
' exit 10'
' fi'
'fi'
For those who may stumble here for an answer. Yes, you can execute a bash script via ssm document, use aws provided ssm document "aws:runShellScript" to execute your script. ssm agent need to be installed on the EC2 with the appropriate instance profile attached with needed ssm permissions.
You don't need to single or double quote before and after your commands as mentioned in the question. Key is to use -| as script identifier and then type in your commands with proper indentation (2 spaces in my case)
Here is a sample ssm document doing so