Skip to content
Open
Show file tree
Hide file tree
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
21 changes: 21 additions & 0 deletions infra/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -658,6 +658,19 @@ var cleanupIndexDryRunVar = !empty(cleanupIndexDryRun) ? cleanupIndexDryRun : ''
param cleanupIndexCronJob string = ''
var cleanupIndexCronJobVar = !empty(cleanupIndexCronJob) ? cleanupIndexCronJob : ''

// Google Drive Pro-Pulse
@description('Google Drive Propulse Surveys')
param googleDriveSurveyFolder string = ''
var googleDriveSurveyFolderVar = !empty(googleDriveSurveyFolder) ? googleDriveSurveyFolder : ''

@description('Google Drive Propulse Members Folder')
param googleDriveTppFolder string = ''
var googleDriveTppFolderVar = !empty(googleDriveTppFolder) ? googleDriveTppFolder : ''





// MCP Function app
@description('Logging Verbosity')
var loggingVerbosity = 'false'
Expand Down Expand Up @@ -1704,6 +1717,14 @@ module dataIngestion './core/host/functions.bicep' = {
name: 'OPENAI_API_KEY'
value: mcpOpenAiApiKeyVar
}
{
name: 'GDRIVE_SOURCE_SURVEY_FOLDER_ID'
value: googleDriveSurveyFolderVar
}
{
name: 'GDRIVE_TPP_MEMBERS_FOLDER_ID'
value: googleDriveTppFolderVar
}
]
}
}
Expand Down
8 changes: 7 additions & 1 deletion infra/main.parameters.json
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,12 @@
},
"webAppUserFeedbackUrl": {
"value": "${USER_FEEDBACK_URL}"
}
},
"googleDriveSurveyFolder":{
"value": "${GDRIVE_SOURCE_SURVEY_FOLDER_ID}"
},
"googleDriveTppFolder":{
"value": "${GDRIVE_TPP_MEMBERS_FOLDER_ID}"
}
}
}