AWS/KMS (1) 썸네일형 리스트형 [KMS] kms: Decrypt on the resource associated with this ciphertext because no identiy-based policy allows the kms:Decrypt action 1. 발생에러 : kms: Decrypt on the resource associated with this ciphertext because no identiy-based policy allows the kms:Decrypt action 2.해결방안 :KMS 키 정책은 역할에 대해 kms:Decrypt에 대한 액세스를 허용해야 합니다. 즉, 키 정책에 다음과 같은 내용이 있어야 합니다.{ "Sid": "Allow12345678", "Effect": "Allow", "Principal": { "AWS": "arn:aws:iam::12345678:root" }, "Action": "kms:Decrypt", "Resource": "*"} 그리고 IAM 역할은 km.. 이전 1 다음