Skip to content

Commit ab05ed0

Browse files
committed
rename to infra-core-api
1 parent 9d1fdd2 commit ab05ed0

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ src_directory_root = src/
99
integration_test_directory_root = tests/live_integration/
1010

1111
# 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"
1515
region="us-east-1"
1616

1717
# DO NOT CHANGE

cloudformation/iam.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Resources:
5252
- secretsmanager:GetSecretValue
5353
Effect: Allow
5454
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*
5656
PolicyName: lambda-db-secrets
5757
- PolicyDocument:
5858
Version: 2012-10-17

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
"prettier:write": "prettier --write src/*.ts src/**/*.ts tests/**/*.ts",
1818
"prepare": "node .husky/install.mjs || true",
1919
"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",
2121
"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",
2424
"test:live-ui": "yarn test:live --ui"
2525
},
2626
"devDependencies": {

src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ type EnvironmentConfigType = {
2929

3030
const genericConfig: GenericConfigType = {
3131
DynamoTableName: "infra-events-api-records",
32-
ConfigSecretName: "infra-events-api-config",
32+
ConfigSecretName: "infra-core-api-config",
3333
UpcomingEventThresholdSeconds: 1800, // 30 mins
3434
AwsRegion: process.env.AWS_REGION || "us-east-1",
3535
} as const;

0 commit comments

Comments
 (0)