LoginSignup
0
0

More than 3 years have passed since last update.

AWS ACM で com.amazon.coral.service.InternalFailure エラーが出る

Posted at

ACM で証明書のリクエストを行ったら、com.amazon.coral.service.InternalFailure エラーが表示された。

実行していた IAM ユーザは、AdministratorAccess ポリシーと下記のように NotIpAddress による IP 制限ポリシーをアタッチしていた。

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Deny",
            "Action": "*",
            "Resource": "*",
            "Condition": {
                "NotIpAddress": {
                    "aws:SourceIp": [
                        "xxx.xxx.xxx.xxx/32"
                    ]
                }
            }
        }
    ]
}

一旦、この IP 制限をかけていたポリシーを外すと正常に動作した。
ACM 設定が終わってから、IP 制限を戻す予定。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0