Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Restrict Maximum Concurrency for the ssosync lambda to 1 #207

Merged
Merged
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
2 changes: 2 additions & 0 deletions template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -534,12 +534,14 @@ Resources:
Condition: CreateFunction
Properties:
FunctionName: !If [SetFunctionName, !Ref FunctionName, !Ref AWS::NoValue]
Description: "An instance of ssosync deplyed from the Serverless Application Repository, for details see http://https://github.com/awslabs/ssosync"
Role: !If [RemoteSecrets, !GetAtt SSOSyncRoleRemote.Arn, !GetAtt SSOSyncRoleLocal.Arn]
Runtime: provided.al2
Handler: bootstrap
Architectures:
- arm64
Timeout: !Ref TimeOut
ReservedConcurrentExecutions: 1
Environment:
Variables:
LOG_LEVEL: !Ref LogLevel
Expand Down
Loading