File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ src_directory_root = src/
9
9
integration_test_directory_root = tests/live_integration/
10
10
11
11
# CHANGE ME (as needed)
12
- application_key =infra-events -api
13
- application_name ="InfraEventsApi "
14
- techlead ="ronita2 @illinois.edu"
12
+ application_key =infra-core -api
13
+ application_name ="InfraCoreApi "
14
+ techlead ="dsingh14 @illinois.edu"
15
15
region ="us-east-1"
16
16
17
17
# DO NOT CHANGE
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ Resources:
52
52
- secretsmanager:GetSecretValue
53
53
Effect : Allow
54
54
Resource :
55
- - !Sub arn:aws:secretsmanager:${AWS::Region}:${AWS::AccountId}:secret:infra-events -api-config*
55
+ - !Sub arn:aws:secretsmanager:${AWS::Region}:${AWS::AccountId}:secret:infra-core -api-config*
56
56
PolicyName : lambda-db-secrets
57
57
- PolicyDocument :
58
58
Version : 2012-10-17
Original file line number Diff line number Diff line change 17
17
"prettier:write" : " prettier --write src/*.ts src/**/*.ts tests/**/*.ts" ,
18
18
"prepare" : " node .husky/install.mjs || true" ,
19
19
"lint-staged" : " lint-staged" ,
20
- "test:unit" : " cross-env APPLICATION_KEY=infra-events -api vitest tests/unit" ,
20
+ "test:unit" : " cross-env APPLICATION_KEY=infra-core -api vitest tests/unit" ,
21
21
"test:unit-ui" : " yarn test:unit --ui" ,
22
- "test:unit-watch" : " cross-env APPLICATION_KEY=infra-events -api vitest tests/unit" ,
23
- "test:live" : " cross-env APPLICATION_KEY=infra-events -api vitest tests/live" ,
22
+ "test:unit-watch" : " cross-env APPLICATION_KEY=infra-core -api vitest tests/unit" ,
23
+ "test:live" : " cross-env APPLICATION_KEY=infra-core -api vitest tests/live" ,
24
24
"test:live-ui" : " yarn test:live --ui"
25
25
},
26
26
"devDependencies" : {
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ type EnvironmentConfigType = {
29
29
30
30
const genericConfig : GenericConfigType = {
31
31
DynamoTableName : "infra-events-api-records" ,
32
- ConfigSecretName : "infra-events -api-config" ,
32
+ ConfigSecretName : "infra-core -api-config" ,
33
33
UpcomingEventThresholdSeconds : 1800 , // 30 mins
34
34
AwsRegion : process . env . AWS_REGION || "us-east-1" ,
35
35
} as const ;
You can’t perform that action at this time.
0 commit comments