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

Updating security hub sam to python 3.13 #211

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ Metadata:
- cloudwatchevents
- securityhub
Name: sumologic-securityhub-connector-aws-org
LicenseUrl: s3://appdevstore/SecurityHubCollectorAWSOrg/v1.0.7/6092dd6c323e33634657102f570628e0
ReadmeUrl: s3://appdevstore/SecurityHubCollectorAWSOrg/v1.0.7/eb911876461845db8f3113dbace6d454
SemanticVersion: 1.0.7
LicenseUrl: s3://appdevstore/SecurityHubCollectorAWSOrg/v1.0.8/6092dd6c323e33634657102f570628e0
ReadmeUrl: s3://appdevstore/SecurityHubCollectorAWSOrg/v1.0.8/eb911876461845db8f3113dbace6d454
SemanticVersion: 1.0.8
SourceCodeUrl: https://github.com/SumoLogic/sumologic-aws-lambda/tree/main/securityhub-org/sumologic-securityhub-collector-awsorg/src
SpdxLicenseId: Apache-2.0
Parameters:
Expand All @@ -42,8 +42,8 @@ Resources:
Type: AWS::Serverless::Function
Properties:
Handler: securityhub_collector_org.lambda_handler
Runtime: python3.11
CodeUri: s3://appdevstore/SecurityHubCollectorAWSOrg/v1.0.7/72d8a9923335d52f948cbd3f99d8b91d
Runtime: python3.13
CodeUri: s3://appdevstore/SecurityHubCollectorAWSOrg/v1.0.8/72d8a9923335d52f948cbd3f99d8b91d
MemorySize: 128
Timeout: 300
Environment:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ else
AWS_REGION="us-east-1"
fi

version="1.0.6"
version="1.0.8"

echo "Creating package.yaml"
sam package --template-file template.yaml --s3-bucket $SAM_S3_BUCKET --output-template-file packaged.yaml --s3-prefix "SecurityHubCollectorAWSOrg/v"$version --region $AWS_REGION --profile $AWS_PROFILE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Metadata:
Name: sumologic-securityhub-connector-aws-org
LicenseUrl: ../LICENSE
ReadmeUrl: ../README.md
SemanticVersion: 1.0.7
SemanticVersion: 1.0.8
SourceCodeUrl: https://github.com/SumoLogic/sumologic-aws-lambda/tree/main/securityhub-org/sumologic-securityhub-collector-awsorg/src
SpdxLicenseId: Apache-2.0

Expand All @@ -41,7 +41,7 @@ Resources:
Type: 'AWS::Serverless::Function'
Properties:
Handler: securityhub_collector_org.lambda_handler
Runtime: python3.11
Runtime: python3.13
CodeUri: ../src/src.zip
MemorySize: 128
Timeout: 300
Expand Down
Loading