Question on AWS SSM automation

0

I created a common administrative task via run command with AWS-RunPowerShellScript targeting a few Windows instances. I tested it and it works. I'd like to automate it so that whenever I or someone needs to run we can just kick off. It'd be great if I was able to call it from Jenkins build (Jenkinsfile). I thought to use the CLI command ("aws ssm send-command") as is in Jenkinsfile, but SSM does not support Power Shell or Windows command platforms. It only supports Linux/Unix/OS X platform.

Sri
已提问 5 个月前422 查看次数
1 回答
0

Here are a few options to automate and execute your PowerShell script on Windows EC2 instances from Jenkins:

  1. Use Jenkins Powershell plugin to directly run the PowerShell script on the instances as part of your Jenkins job. You can specify the script path and target machines.

  2. Install AWS CLI on your Jenkins server and use aws ssm send-command to invoke the script. Even though SSM doesn't directly support PowerShell, you can invoke cmd.exe to then execute the PowerShell script.

  3. Use Jenkins to copy the PowerShell script to a shared location on the instances (e.g. S3) and then use aws ssm send-command to execute a cmd.exe script to download and invoke it.

  4. Switch to using AWS RunCommand which is the successor to SSM documents for automating ops. It has better support for PowerShell scripts on Windows. Invoke the run command from Jenkins.

  5. Use Jenkins Powershell plugin to copy the script to instances first, then use aws ssm send-command to invoke cmd.exe to execute the script locally.

  6. Package the PowerShell script into an SSM document for Windows. This can then be executed directly using aws ssm send-command even if SSM doesn't natively support PS.

So in summary, combine Jenkins with AWS CLI and PowerShell plugins, SSM, RunCommand or cmd.exe invocation to automate running your Powershell administrative tasks on Windows from Jenkins.

AWS
Saad
已回答 5 个月前
  • SSM doesn't support powershell or windows command cli

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则