これは、タグがcostcenterでdeptに値が115の場合にのみインスタンスの作成を許可するポリシーで、これらのタグがなくても作成されたインスタンスをテストするときにプロンプトされます。タグをリクエストするIamポリシー
{
"Sid": "AllowTaggedInstances",
"Effect": "Allow",
"Action": "ec2:RunInstances",
"Resource": "arn:aws:ec2:us-east-1:729964090428:instance/*",
"Condition": {
"StringEquals": {
"aws:RequestTag/costcenter": "115",
"aws:RequestTag/dept": "prod"
},
"ForAllValues:StringEquals": {
"aws:TagKeys": [
"costcenter",
"dept"
]
}
}
},