How to load a python script as an attachment to a aws:executeScript step as an attachement?

0

From https://docs.aws.amazon.com/systems-manager/latest/userguide/automation-action-executeScript.html I see that you can use an attachement to load code and modules to the execution step. However, it is not clear to me where this code would actually sit. The step only specifies the name of the attachment.

action: "aws:executeScript" inputs: Runtime: runtime Handler: "functionName" InputPayload: scriptInput: '{{parameterValue}}' Script: |- def functionName(events, context): ... Attachment: "scriptAttachment.zip"

in this example where do i put "scriptAttachment.zip" so that it can be access by the SSM Document when it runs?

I would appreciate an example so that I could 1.) load python scripts without them being part of the SSM Docuemnt and 2.) use python modules (i.e. Pandas) that are not part of the default library).

Michael
已提问 6 个月前221 查看次数
1 回答
1

I think this is what you are looking for: AttachmentsSource.

profile pictureAWS
专家
kentrad
已回答 6 个月前

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

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

回答问题的准则