如何将EC2实例添加到新创建的安全组?安全组是使用
创建的client = session.client("ec2")
group_id = client.create_security_group(
DryRun=False,
GroupName=group_name,
VpcId=vpc_id,
Description=description
)
答案 0 :(得分:1)
您需要修改实例的属性:
modify_attribute(attribute, value, dry_run=False)
modify_attribute
更改此实例的属性。使用属性 groupSet - 安全组或ID集
i.modify_attribute('groupSet','sg-xxxx5678')