We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed1d80a commit bb16b91Copy full SHA for bb16b91
cdk.py
@@ -188,6 +188,9 @@ def __init__(
188
app_default_role = app.get_role("DefaultRole")
189
queue.grant_consume_messages(grantee=app_default_role)
190
s3_bucket.grant_read(identity=app_default_role)
191
+ s3_bucket.grant_write(identity=app_default_role)
192
+ s3_bucket.grant_put(identity=app_default_role)
193
+ s3_bucket.grant_delete(identity=app_default_role)
194
app_default_role.add_to_principal_policy(
195
statement=aws_cdk.aws_iam.PolicyStatement(
196
actions=["ses:SendEmail", "SES:SendRawEmail"],
0 commit comments