Skip to content

Commit b5fdede

Browse files
authored
Merge pull request #63 from aws/imabhichow/update-cfn-template
chore: update cfn template to allow `kms:GenerateDataKeyWithoutPlaintext` & `kms:ReEncrypt`
2 parents f44f360 + bead908 commit b5fdede

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

cfn/ci_cd.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -382,12 +382,16 @@ Resources:
382382
"Effect": "Allow",
383383
"Resource": [
384384
"arn:aws:kms:*:658956600833:key/*",
385-
"arn:aws:kms:*:658956600833:alias/*"
385+
"arn:aws:kms:*:658956600833:alias/*",
386+
"arn:aws:kms:*:370957321024:key/*",
387+
"arn:aws:kms:*:370957321024:alias/*"
386388
],
387389
"Action": [
388390
"kms:Encrypt",
389391
"kms:Decrypt",
390-
"kms:GenerateDataKey"
392+
"kms:GenerateDataKey",
393+
"kms:GenerateDataKeyWithoutPlaintext",
394+
"kms:ReEncrypt"
391395
]
392396
}
393397
]

0 commit comments

Comments
 (0)