gpt4 book ai didi

python boto3 附加/替换 IAM 角色到 ec2

转载 作者:行者123 更新时间:2023-11-28 20:33:33 25 4
gpt4 key购买 nike

我找不到通过 boto3 将 IAM 角色附加/替换到 EC2 实例的方法。
cloudhackers 处的文档提供了一种使用 IAM 角色运行镜像但不附加的方法。

boto 可以吗?否则,我需要手动操作。

最佳答案

阅读文档 here

associate_iam_instance_profile(**kwargs)
将 IAM 实例配置文件与正在运行或已停止的实例相关联。您不能将多个 IAM 实例配置文件与一个实例相关联。

请求语法

response = client.associate_iam_instance_profile(
IamInstanceProfile={
'Arn': 'string',
'Name': 'string'
},
InstanceId='string'
)

响应语法

{
'IamInstanceProfileAssociation': {
'AssociationId': 'string',
'InstanceId': 'string',
'IamInstanceProfile': {
'Arn': 'string',
'Id': 'string'
},
'State': 'associating'|'associated'|'disassociating'|'disassociated',
'Timestamp': datetime(2015, 1, 1)
}
}

顺便说一句,您提供的链接顶部有一个横幅,上面写着

Note You are viewing the documentation for an older version of boto (boto2). Boto3, the next version of Boto, is now stable and recommended for general use.

关于python boto3 附加/替换 IAM 角色到 ec2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50364540/

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