Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BRS-326-2: QA fixes for nameUpdate cron, add logging param #363

Merged
merged 1 commit into from
Jul 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 36 additions & 26 deletions arSam/template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ Parameters:
SSOClientId:
Type: String
Default: "defaultClientId"
LogLevel:
Type: String
Default: "info"
WebhookUrl:
Type: String
Default: "defaultWebhookUrl"
Expand Down Expand Up @@ -186,7 +189,7 @@ Resources:
Environment:
Variables:
TABLE_NAME: !Ref TableNameAR
LOG_LEVEL: info
LOG_LEVEL: !Ref LogLevel
Layers:
- !Ref BaseLayer
Policies:
Expand Down Expand Up @@ -215,7 +218,7 @@ Resources:
Environment:
Variables:
TABLE_NAME: !Ref TableNameAR
LOG_LEVEL: info
LOG_LEVEL: !Ref LogLevel
Layers:
- !Ref BaseLayer
- !Ref ConstantsLayer
Expand All @@ -239,7 +242,7 @@ Resources:
Environment:
Variables:
TABLE_NAME: !Ref TableNameAR
LOG_LEVEL: info
LOG_LEVEL: !Ref LogLevel
Layers:
- !Ref BaseLayer
- !Ref ConstantsLayer
Expand All @@ -263,7 +266,7 @@ Resources:
Environment:
Variables:
TABLE_NAME: !Ref TableNameAR
LOG_LEVEL: info
LOG_LEVEL: !Ref LogLevel
Layers:
- !Ref BaseLayer
- !Ref ConstantsLayer
Expand All @@ -286,7 +289,7 @@ Resources:
Runtime: nodejs20.x
Environment:
Variables:
LOG_LEVEL: info
LOG_LEVEL: !Ref LogLevel
Layers:
- !Ref BaseLayer
Events:
Expand All @@ -305,7 +308,7 @@ Resources:
Runtime: nodejs20.x
Environment:
Variables:
LOG_LEVEL: info
LOG_LEVEL: !Ref LogLevel
Layers:
- !Ref BaseLayer
Events:
Expand All @@ -326,7 +329,7 @@ Resources:
Variables:
TABLE_NAME: !Ref TableNameAR
AWS_ACCOUNT_LIST: !Ref AWSAccountList
LOG_LEVEL: debug
LOG_LEVEL: !Ref LogLevel
WEBHOOK_URL: !Ref WebhookUrl
Layers:
- !Ref BaseLayer
Expand All @@ -353,7 +356,7 @@ Resources:
Environment:
Variables:
TABLE_NAME: !Ref TableNameAR
LOG_LEVEL: info
LOG_LEVEL: !Ref LogLevel
EXPORT_FUNCTION_NAME: !Ref ExportFunctionName
EXPORT_EXPIRY_TIME: !Ref ExportExpiryTime
S3_BUCKET_DATA: !Ref S3BucketData
Expand Down Expand Up @@ -399,7 +402,7 @@ Resources:
DISABLE_HIGH_ACCURACY_PROGRESS_PERCENTAGE: !Ref DisableHighAccuracyProgressPercentage
S3_BUCKET_DATA: !Ref S3BucketData
TABLE_NAME: !Ref TableNameAR
LOG_LEVEL: info
LOG_LEVEL: !Ref LogLevel
Layers:
- !Ref ConstantsLayer
- !Ref FunctionsLayer
Expand All @@ -421,7 +424,7 @@ Resources:
Environment:
Variables:
TABLE_NAME: !Ref TableNameAR
LOG_LEVEL: info
LOG_LEVEL: !Ref LogLevel
VARIANCE_EXPORT_FUNCTION_NAME: !Ref VarianceExportFunctionName
S3_BUCKET_DATA: !Ref S3BucketData
EXPORT_EXPIRY_TIME: !Ref ExportExpiryTime
Expand Down Expand Up @@ -463,7 +466,7 @@ Resources:
FILE_NAME_VARIANCE: !Ref FileNameVarianceExport
S3_BUCKET_DATA: !Ref S3BucketData
TABLE_NAME: !Ref TableNameAR
LOG_LEVEL: info
LOG_LEVEL: !Ref LogLevel
Layers:
- !Ref BaseLayer
- !Ref ConstantsLayer
Expand All @@ -482,7 +485,7 @@ Resources:
Environment:
Variables:
TABLE_NAME: !Ref TableNameAR
LOG_LEVEL: info
LOG_LEVEL: !Ref LogLevel
Layers:
- !Ref BaseLayer
Policies:
Expand Down Expand Up @@ -511,7 +514,7 @@ Resources:
Environment:
Variables:
TABLE_NAME: !Ref TableNameAR
LOG_LEVEL: info
LOG_LEVEL: !Ref LogLevel
Layers:
- !Ref BaseLayer
Policies:
Expand All @@ -534,7 +537,7 @@ Resources:
Environment:
Variables:
TABLE_NAME: !Ref TableNameAR
LOG_LEVEL: info
LOG_LEVEL: !Ref LogLevel
Layers:
- !Ref BaseLayer
Policies:
Expand All @@ -558,7 +561,7 @@ Resources:
Variables:
TABLE_NAME: !Ref TableNameAR
NAME_CACHE_TABLE_NAME: !Ref TableNameCacheAR
LOG_LEVEL: info
LOG_LEVEL: !Ref LogLevel
DATA_REGISTER_NAME_API_ENDPOINT: !Ref DataRegisterNameEndpoint
DATA_REGISTER_NAME_API_KEY: !Ref DataRegisterNameApiKey
Layers:
Expand All @@ -568,6 +571,13 @@ Resources:
TableName: !Ref TableNameAR
- DynamoDBCrudPolicy:
TableName: !Ref TableNameCacheAR
Events:
UpdateNames:
Type: Schedule
Properties:
Name: "NameUpdate"
Schedule: cron(0 8 * * ? *)
Description: "Every day at 08:00 UTC (00:00 PDT) = cron(0 8 * * ? *)"

ParkGetFunction:
Type: AWS::Serverless::Function
Expand All @@ -578,7 +588,7 @@ Resources:
Environment:
Variables:
TABLE_NAME: !Ref TableNameAR
LOG_LEVEL: info
LOG_LEVEL: !Ref LogLevel
Layers:
- !Ref BaseLayer
- !Ref PermissionLayer
Expand Down Expand Up @@ -608,7 +618,7 @@ Resources:
Environment:
Variables:
TABLE_NAME: !Ref TableNameAR
LOG_LEVEL: info
LOG_LEVEL: !Ref LogLevel
Layers:
- !Ref BaseLayer
Policies:
Expand All @@ -630,7 +640,7 @@ Resources:
Runtime: nodejs20.x
Environment:
Variables:
LOG_LEVEL: info
LOG_LEVEL: !Ref LogLevel
Layers:
- !Ref BaseLayer
Events:
Expand Down Expand Up @@ -684,7 +694,7 @@ Resources:
Runtime: nodejs20.x
Environment:
Variables:
LOG_LEVEL: info
LOG_LEVEL: !Ref LogLevel
Layers:
- !Ref BaseLayer
Events:
Expand All @@ -709,7 +719,7 @@ Resources:
Runtime: nodejs20.x
Environment:
Variables:
LOG_LEVEL: info
LOG_LEVEL: !Ref LogLevel
TABLE_NAME: !Ref TableNameAR
Layers:
- !Ref BaseLayer
Expand All @@ -733,7 +743,7 @@ Resources:
Runtime: nodejs20.x
Environment:
Variables:
LOG_LEVEL: info
LOG_LEVEL: !Ref LogLevel
TABLE_NAME: !Ref TableNameAR
CONFIG_TABLE_NAME: !Ref TableNameConfigAR
SSO_ORIGIN: !Ref SSOOrigin
Expand Down Expand Up @@ -764,7 +774,7 @@ Resources:
Runtime: nodejs20.x
Environment:
Variables:
LOG_LEVEL: info
LOG_LEVEL: !Ref LogLevel
Layers:
- !Ref BaseLayer
Events:
Expand All @@ -783,7 +793,7 @@ Resources:
Runtime: nodejs20.x
Environment:
Variables:
LOG_LEVEL: info
LOG_LEVEL: !Ref LogLevel
TABLE_NAME: !Ref TableNameAR
Layers:
- !Ref BaseLayer
Expand Down Expand Up @@ -813,7 +823,7 @@ Resources:
Runtime: nodejs20.x
Environment:
Variables:
LOG_LEVEL: info
LOG_LEVEL: !Ref LogLevel
Layers:
- !Ref BaseLayer
Events:
Expand All @@ -832,7 +842,7 @@ Resources:
Runtime: nodejs20.x
Environment:
Variables:
LOG_LEVEL: info
LOG_LEVEL: !Ref LogLevel
TABLE_NAME: !Ref TableNameAR
Layers:
- !Ref BaseLayer
Expand Down Expand Up @@ -941,7 +951,7 @@ Resources:
Handler: index.handler
Environment:
Variables:
LOG_LEVEL: info
LOG_LEVEL: !Ref LogLevel
SSO_ISSUER: !Ref SSOIssuerUrl
SSO_JWKSURI: !Ref SSOJWKSUri
Layers:
Expand Down
Loading