は私のEC2インスタンスにAWS CodeDeployエージェントをインストールしようとすると応答AWS S3のコマンドは403禁じられ
aws s3 cp s3://aws-codedeploy-ap-southeast-2/latest/install . --region ap-southeast-2
fatal error: An error occurred (403) when calling the HeadObject operation: Forbidden
インスタンスのIAMロールはポリシー文書
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"s3:Get*",
"s3:List*"
],
"Effect": "Allow",
"Resource": "*"
}
]
}
と信頼関係を持っている
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "",
"Effect": "Allow",
"Principal": {
"Service": "codedeploy.ap-southeast-2.amazonaws.com"
},
"Action": "sts:AssumeRole"
}
]
}
'aws-s3 ls s3:// aws-codedeploy-ap-southeast-2 --region ap-southeast-2'は動作しますか? –
'wget https:// aws-codedeploy-ap-southeast-2.s3.amazonaws.com/latest/install'が機能しました。 –