gpt4 book ai didi

python - 将参数传递到 AWS CLI 命令

转载 作者:太空宇宙 更新时间:2023-11-03 15:37:47 27 4
gpt4 key购买 nike

我尝试使用来自 python 脚本的以下调用在 EC2 实例上设置标签,其中我传入变量 instanceId 作为要添加标签的资源:

subprocess.call('aws ec2 create-tags --resources $instanceId --tags "Key=somekey, Value=someval"')

但我收到此错误:

An error occurred (MissingParameter) when calling the CreateTags operation: The request must contain the parameter resourceIdSet
255

但是,当我打印出 instanceId 时,我看到了实例的正确 ID,因此我传递变量的方式肯定有问题。是否有不同的约定?

最佳答案

AWS CLI 命令中的变量 $instanceId 最终将成为 shell 变量,并且不会从 Python 代码中替换。

因此,如果 $instanceId 是一个 Python 变量,您可能需要执行以下操作:

subprocess.call('aws ec2 create-tags --resources ' + $instanceId  + ' --tags "Key=somekey, Value=someval"')

注意:我不是 Python 开发人员,所以这是一次黑暗中的尝试。

关于python - 将参数传递到 AWS CLI 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42397420/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com