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

Added support korea deployment for cloudtrailbenchmark #209

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
18 changes: 10 additions & 8 deletions cloudtrailbenchmark/packaged.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ Metadata:
- benchmark
- cloudtrail
Name: sumologic-aws-cloudtrail-benchmark
LicenseUrl: s3://appdevstore/cloudtrailbenchmark/v1.0.16/cac1a6df52c685e0f6ebe4ae72078c80
ReadmeUrl: s3://appdevstore/cloudtrailbenchmark/v1.0.16/8a901bb4fbbe82f128fc502dd3077508
SemanticVersion: 1.0.16
LicenseUrl: s3://appdevstore/cloudtrailbenchmark/v1.0.17/cac1a6df52c685e0f6ebe4ae72078c80
ReadmeUrl: s3://appdevstore/cloudtrailbenchmark/v1.0.17/8a901bb4fbbe82f128fc502dd3077508
SemanticVersion: 1.0.17
SourceCodeUrl: https://github.com/SumoLogic/sumologic-aws-lambda/tree/main/cloudtrailbenchmark
Parameters:
CollectorName:
Expand All @@ -61,19 +61,21 @@ Parameters:
Type: String
SumoAccessKey:
Type: String
NoEcho: true
SumoDeployment:
Type: String
AllowedValues:
- au
- ca
- de
- eu
- fed
- in
- jp
- us2
- kr
- us1
- in
- fed
Description: Enter au, ca, de, eu, jp, us2, in, fed or us1
- us2
Description: Enter au, ca, de, eu, fed, in, jp, kr, us1 or us2
RemoveSumoResourcesOnDeleteStack:
AllowedValues:
- true
Expand Down Expand Up @@ -127,7 +129,7 @@ Resources:
Properties:
Location:
ApplicationId: arn:aws:serverlessrepo:us-east-1:956882708938:applications/sumologic-app-utils
SemanticVersion: 2.0.16
SemanticVersion: 2.0.17
Metadata:
SamResourceId: SumoAppUtils
SumoRole:
Expand Down
14 changes: 8 additions & 6 deletions cloudtrailbenchmark/template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Metadata:
Name: sumologic-aws-cloudtrail-benchmark
LicenseUrl: ./LICENSE
ReadmeUrl: ./README.md
SemanticVersion: 1.0.16
SemanticVersion: 1.0.17
SourceCodeUrl: https://github.com/SumoLogic/sumologic-aws-lambda/tree/main/cloudtrailbenchmark


Expand All @@ -67,19 +67,21 @@ Parameters:
Type: String
SumoAccessKey:
Type: String
NoEcho: true
SumoDeployment:
Type: String
AllowedValues:
- au
- ca
- de
- eu
- fed
- in
- jp
- us2
- kr
- us1
- in
- fed
Description: "Enter au, ca, de, eu, jp, us2, in, fed or us1"
- us2
Description: "Enter au, ca, de, eu, fed, in, jp, kr, us1 or us2"
RemoveSumoResourcesOnDeleteStack:
AllowedValues:
- true
Expand Down Expand Up @@ -123,7 +125,7 @@ Resources:
Properties:
Location:
ApplicationId: arn:aws:serverlessrepo:us-east-1:956882708938:applications/sumologic-app-utils
SemanticVersion: 2.0.16
SemanticVersion: 2.0.17

SumoRole:
Condition: SetupSumoResources
Expand Down
21 changes: 11 additions & 10 deletions cloudtrailbenchmark/test/custom/app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,17 @@ Parameters:
SumoDeployment:
Type: String
AllowedValues:
- au
- ca
- de
- eu
- jp
- us2
- us1
- in
- fed
Description: Enter au, ca, de, eu, jp, us2, in, fed or us1
- au
- ca
- de
- eu
- fed
- in
- jp
- kr
- us1
- us2
Description: "Enter au, ca, de, eu, fed, in, jp, kr, us1 or us2"
RemoveSumoResourcesOnDeleteStack:
AllowedValues:
- true
Expand Down
2 changes: 1 addition & 1 deletion cloudtrailbenchmark/testdeploy.sh
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ else
fi
uid=$(cat /dev/random | LC_CTYPE=C tr -dc "[:lower:]" | head -c 6)

version="1.0.15"
version="1.0.17"

sam package --template-file template.yaml --s3-bucket $SAM_S3_BUCKET --output-template-file packaged.yaml --s3-prefix "cloudtrailbenchmark/v$version" --region $AWS_REGION --profile $AWS_PROFILE

Expand Down