Wip backend (#4)
* feat: Add new API handlers for user, project, and task management; update package dependencies * feat: Update .gitignore, add Lambda layer configuration, and refactor DynamoDB handlers to use AWS SDK v3 * feat: Update serverless configuration and refactor API handlers to improve error handling and response structure * feat: Add Cognito user pool name parameter and update API handlers to include CORS headers * feat: Update task and project ID formats, add populateSeedData function, and enhance user ID handling * feat: Update image source paths to use S3 public URL for profile and task attachments
This commit was merged in pull request #4.
This commit is contained in:
@@ -76,6 +76,20 @@ resource "aws_ssm_parameter" "user_pool_id" {
|
||||
value = aws_cognito_user_pool.tasker_cognito_user_pool.id
|
||||
}
|
||||
|
||||
resource "aws_ssm_parameter" "user_pool_arn" {
|
||||
name = "/tasker/cognito/user-pool-arn"
|
||||
description = "Tasker Cognito User Pool ARN"
|
||||
type = "String"
|
||||
value = aws_cognito_user_pool.tasker_cognito_user_pool.arn
|
||||
}
|
||||
|
||||
resource "aws_ssm_parameter" "user_pool_name" {
|
||||
name = "/tasker/cognito/user-pool-name"
|
||||
description = "Tasker Cognito User Pool Name"
|
||||
type = "String"
|
||||
value = aws_cognito_user_pool.tasker_cognito_user_pool.name
|
||||
}
|
||||
|
||||
resource "aws_ssm_parameter" "client_id" {
|
||||
name = "/tasker/cognito/client-id"
|
||||
description = "Tasker Cognito Client ID"
|
||||
|
||||
Reference in New Issue
Block a user