Skip to content

Commit

Permalink
trivial update and audit fix (#147)
Browse files Browse the repository at this point in the history
  • Loading branch information
TingDaoK authored Aug 18, 2021
1 parent 408f9f5 commit e38bdad
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 18 deletions.
2 changes: 1 addition & 1 deletion benchmarks/benchmark-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"projects": {
"aws-crt-java": {
"shell_script": "project_scripts/run_java_crt.sh",
"branch": "upload_test"
"branch": "main"
}
},
"instances": {
Expand Down
11 changes: 7 additions & 4 deletions benchmarks/benchmarks-stack/benchmarks-stack/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions benchmarks/dashboard-stack/lib/dashboard-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ export class DashboardStack extends cdk.Stack {

const dashboard = new cloudwatch.CfnDashboard(this, id, {
dashboardBody: JSON.stringify(dashboard_body),
dashboardName: id
dashboardName: id + "_" + region
});

// Permission to create CFN stack with ec2,s3, iam and security group in it.
Expand Down Expand Up @@ -213,7 +213,7 @@ export class DashboardStack extends cdk.Stack {

new s3deploy.BucketDeployment(this, 'DeployCodeBase', {
sources: [s3deploy.Source.asset('../benchmarks-stack')],
destinationBucket: code_bucket,
destinationBucket: code_bucket
});

new codebuild.Project(this, 'S3BenchmarksDeploy', {
Expand Down
34 changes: 23 additions & 11 deletions benchmarks/dashboard-stack/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e38bdad

Please sign in to comment.