Skip to content
This repository has been archived by the owner on Sep 24, 2020. It is now read-only.

Commit

Permalink
Added log group/streams
Browse files Browse the repository at this point in the history
  • Loading branch information
barnesjt authored May 26, 2020
1 parent 91c29a8 commit 162a9a1
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions deployment/NitroChatbot.json
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,27 @@
}
},
"Resources": {
"LogGroup": {
"Type" : "AWS::Logs::LogGroup",
"Properties" : {
"LogGroupName" : "NitroChatbot",
"RetentionInDays" : 30
}
},
"LogStream": {
"Type" : "AWS::Logs::LogStream",
"Properties" : {
"LogGroupName" : {"Ref": "LogGroup"},
"LogStreamName" : "UserLogs"
}
},
"AuthLogStream": {
"Type" : "AWS::Logs::LogStream",
"Properties" : {
"LogGroupName" : {"Ref": "LogGroup"},
"LogStreamName" : "RequestedAuths"
}
},
"NitroVPC": {
"Type" : "AWS::EC2::VPC",
"Properties" : {
Expand Down

0 comments on commit 162a9a1

Please sign in to comment.