File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -906,6 +906,7 @@ Resources:
906
906
TOKEN_ID_ATTRIBUTE_NAME = 'token_id'
907
907
ISSUED_AT_TIMESTAMP_ATTRIBUTE_NAME = 'issued_at'
908
908
TIME_TO_LIVE_ATTRIBUTE_NAME = 'ttl'
909
+ CONTAINER_ID_AND_TRIGGER_COMPOSITE_ATTRIBUTE_NAME = 'container_id'
909
910
-%>
910
911
BlockedUsersTable:
911
912
Type: AWS::DynamoDB::Table
@@ -974,6 +975,18 @@ Resources:
974
975
AttributeName: <%= TIME_TO_LIVE_ATTRIBUTE_NAME%>
975
976
Enabled: true
976
977
978
+ UnhealthyContainersTable:
979
+ Type: AWS::DynamoDB::Table
980
+ Properties:
981
+ TableName: !Sub "${SubDomainName}_unhealthy_containers"
982
+ KeySchema:
983
+ - AttributeName: <%= CONTAINER_ID_AND_TRIGGER_COMPOSITE_ATTRIBUTE_NAME%>
984
+ KeyType: HASH
985
+ BillingMode: PAY_PER_REQUEST
986
+ AttributeDefinitions:
987
+ - AttributeName: <%= CONTAINER_ID_AND_TRIGGER_COMPOSITE_ATTRIBUTE_NAME %>
988
+ AttributeType: S
989
+
977
990
HighUsersBlockedAlarm:
978
991
Type: AWS::CloudWatch::Alarm
979
992
Properties:
You can’t perform that action at this time.
0 commit comments