Skip to content

Commit

Permalink
Merge pull request #7 from UmaxCode/dev
Browse files Browse the repository at this point in the history
Move testing to production
  • Loading branch information
UmaxCode authored Jan 18, 2025
2 parents 7e8dd3b + 87ba36b commit 8519aae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Resources:
UserPool: # Cognito User Pool
Type: AWS::Cognito::UserPool
Properties:
UserPoolName: !Sub ${AWS::StackName}-task-management-user-pool
UserPoolName: !Sub ${AWS::StackName}-user-pool
AdminCreateUserConfig:
AllowAdminCreateUserOnly: true
AutoVerifiedAttributes:
Expand Down Expand Up @@ -109,7 +109,7 @@ Resources:
UserPoolClient: # Cognito User Pool Client
Type: AWS::Cognito::UserPoolClient
Properties:
ClientName: !Sub ${AWS::StackName}-task-management-user-pool-client
ClientName: !Sub ${AWS::StackName}-user-pool-client
GenerateSecret: true
AllowedOAuthFlowsUserPoolClient: true
AllowedOAuthFlows:
Expand Down Expand Up @@ -139,7 +139,7 @@ Resources:
UserPoolDomain: # Cognito User Pool Domain
Type: AWS::Cognito::UserPoolDomain
Properties:
Domain: !Sub ${AWS::StackName}-task-management-user-pool-domain
Domain: !Sub ${AWS::StackName}-user-pool-domain
UserPoolId: !Ref UserPool

ApiAdministratorsUserPoolGroup: # Cognito User Group for administrators
Expand Down Expand Up @@ -591,7 +591,7 @@ Outputs:
Description: URL for application
Value: !Sub 'https://${ServerlessRestApi}.execute-api.${AWS::Region}.amazonaws.com/Prod'
Export:
Name: !Sub ${AWS::StackName}-TaskManagementSystemApi
Name: !Sub ${AWS::StackName}-Api

TaskTableName:
Description: 'The name of the DynamoDB Task table'
Expand Down

0 comments on commit 8519aae

Please sign in to comment.