@@ -20,6 +20,7 @@ export type ConfigType = {
2020 SqsQueueUrl : string ;
2121 PaidMemberGroupId : string ;
2222 PaidMemberPriceId : string ;
23+ AadValidReadOnlyClientId : string ;
2324} ;
2425
2526export type GenericConfigType = {
@@ -42,14 +43,15 @@ export type GenericConfigType = {
4243 ProtectedEntraIDGroups : string [ ] ; // these groups are too privileged to be modified via this portal and must be modified directly in Entra ID.
4344 RoomRequestsTableName : string ;
4445 RoomRequestsStatusTableName : string ;
46+ EntraReadOnlySecretName : string ;
4547} ;
4648
4749type EnvironmentConfigType = {
4850 [ env in RunEnvironment ] : ConfigType ;
4951} ;
5052
5153export const infraChairsGroupId = "c0702752-50da-49da-83d4-bcbe6f7a9b1b" ;
52- export const officersGroupId = "ff49e948-4587-416b-8224-65147540d5fc " ;
54+ export const officersGroupId = "c4ddcc9f-a9c0-47e7-98c1-f1b345d53121 " ;
5355export const officersGroupTestingId = "0e6e9199-506f-4ede-9d1b-e73f6811c9e5" ;
5456export const execCouncilGroupId = "ad81254b-4eeb-4c96-8191-3acdce9194b1" ;
5557export const execCouncilTestingGroupId = "dbe18eb2-9675-46c4-b1ef-749a6db4fedd" ;
@@ -64,6 +66,7 @@ const genericConfig: GenericConfigType = {
6466 CacheDynamoTableName : "infra-core-api-cache" ,
6567 ConfigSecretName : "infra-core-api-config" ,
6668 EntraSecretName : "infra-core-api-entra" ,
69+ EntraReadOnlySecretName : "infra-core-api-ro-entra" ,
6770 UpcomingEventThresholdSeconds : 1800 , // 30 mins
6871 AwsRegion : process . env . AWS_REGION || "us-east-1" ,
6972 EntraTenantId : "c8d9148f-9a59-4db3-827d-42ea0c2b6e2e" ,
@@ -99,6 +102,7 @@ const environmentConfig: EnvironmentConfigType = {
99102 "https://sqs.us-east-1.amazonaws.com/427040638965/infra-core-api-sqs" ,
100103 PaidMemberGroupId : "9222451f-b354-4e64-ba28-c0f367a277c2" ,
101104 PaidMemberPriceId : "price_1R4TcTDGHrJxx3mKI6XF9cNG" ,
105+ AadValidReadOnlyClientId : "2c6a0057-5acc-496c-a4e5-4adbf88387ba"
102106 } ,
103107 prod : {
104108 UserFacingUrl : "https://core.acm.illinois.edu" ,
@@ -119,6 +123,7 @@ const environmentConfig: EnvironmentConfigType = {
119123 "https://sqs.us-east-1.amazonaws.com/298118738376/infra-core-api-sqs" ,
120124 PaidMemberGroupId : "172fd9ee-69f0-4384-9786-41ff1a43cf8e" ,
121125 PaidMemberPriceId : "price_1MUGIRDiGOXU9RuSChPYK6wZ" ,
126+ AadValidReadOnlyClientId : "2c6a0057-5acc-496c-a4e5-4adbf88387ba"
122127 } ,
123128} ;
124129
0 commit comments