通过AWS CLI创建新EC2实例时分配角色

时间:2017-02-02 22:09:10

标签: amazon-web-services amazon-ec2

我知道可以从控制台为角色分配角色,但我无法通过AWS CLI工具找到有关如何操作的内容。

1 个答案:

答案 0 :(得分:3)

使用--iam-instance-profile开关。例如:

$ aws ec2 run-instances --image-id ami-11aa22bb --iam-instance-profile Name="s3access-profile" --key-name my-key-pair --security-groups my-security-group --subnet-id subnet-1a2b3c4d

请参阅Launching an Instance with an IAM Role Using the AWS CLI