Skip to content

Commit

Permalink
chore: fixing identical construct names in forumthreadfunctions
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonNotJson committed Sep 21, 2023
1 parent 85fe54f commit 69b8112
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/constructs/common/lambda-functions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -536,13 +536,13 @@ export class ForumThreadFunctions extends Construct {
),
iam.ManagedPolicy.fromManagedPolicyArn(
this,
's3-full-access',
's3-full-access1',
'arn:aws:iam::aws:policy/AmazonS3FullAccess',
),
iam.ManagedPolicy.fromManagedPolicyArn(
this,
'db-read-only',
'arn:aws:iam::aws:policy/AmazonDynamoDBReadOnlyAccess',
'db-full-access1',
'arn:aws:iam::aws:policy/AmazonDynamoDBFullAccess',
),
],
},
Expand All @@ -565,12 +565,12 @@ export class ForumThreadFunctions extends Construct {
),
iam.ManagedPolicy.fromManagedPolicyArn(
this,
's3-read-only',
's3-read-only2',
'arn:aws:iam::aws:policy/AmazonS3ReadOnlyAccess',
),
iam.ManagedPolicy.fromManagedPolicyArn(
this,
'db-read-only',
'db-read-only2',
'arn:aws:iam::aws:policy/AmazonDynamoDBReadOnlyAccess',
),
],
Expand Down

0 comments on commit 69b8112

Please sign in to comment.