We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b90577a commit a6e800dCopy full SHA for a6e800d
iam.yml
@@ -63,7 +63,15 @@ Resources:
63
- 'cloudwatch:PutMetricData'
64
Resource:
65
- '*'
66
-
+ # Build and Run lambdas need read and delete DynamoDB records to check container health status
67
+ - Effect: Allow
68
+ Action:
69
+ - 'dynamodb:GetItem'
70
+ - 'dynamodb:Query'
71
+ - 'dynamodb:DeleteItem'
72
+ Resource:
73
+ - !Sub "arn:aws:dynamodb:${AWS::Region}:${AWS::AccountId}:table/*_unhealthy_containers"
74
+
75
# Permissions for the synchronous Lambda that invokes the long-running Lambda
76
# and then relays web messages to it
77
SessionManagerMessageRelayLambdaRole:
0 commit comments