我一直在使用 AWS Systems Manager,并且创建了一个文档来运行命令,但似乎无法覆盖 SSM 中运行命令的超时
另外,我在我的文档中添加了 timeoutSeconds ,它也不起作用。
这是我的文档(我使用的是架构版本 2.2):
schemaVersion: "2.2"
description: "Runs a Python command"
parameters:
Params:
type: "String"
description: "Params after the python3 keyword."
mainSteps:
- action: "aws:runShellScript"
name: "Python3"
inputs:
timeoutSeconds: '300000'
runCommand:
- "sudo /usr/bin/python3 /opt/python/current/app/{{Params}}"