我知道可以从控制台为角色分配角色,但我无法通过AWS CLI工具找到有关如何操作的内容。
答案 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。