-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #60 from aws-samples/bsc
Bsc
- Loading branch information
Showing
37 changed files
with
2,399 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
*.js | ||
!jest.config.js | ||
*.d.ts | ||
node_modules | ||
|
||
# CDK asset staging directory | ||
.cdk.staging | ||
cdk.out |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
import 'dotenv/config' | ||
import "source-map-support/register"; | ||
import * as cdk from "aws-cdk-lib"; | ||
import * as config from "./lib/config/bscConfig"; | ||
import * as configTypes from "./lib/config/bscConfig.interface"; | ||
import { BscCommonStack } from "./lib/common-stack"; | ||
import { BscSingleNodeStack } from "./lib/single-node-stack"; | ||
import { BscHANodesStack } from "./lib/ha-nodes-stack"; | ||
import * as nag from "cdk-nag"; | ||
|
||
const app = new cdk.App(); | ||
cdk.Tags.of(app).add("Project", "AWS_BSC"); | ||
|
||
new BscCommonStack(app, "bsc-common", { | ||
stackName: `bsc-nodes-common`, | ||
env: { account: config.baseConfig.accountId, region: config.baseConfig.region } | ||
}); | ||
|
||
new BscSingleNodeStack(app, "bsc-single-node", { | ||
stackName: `bsc-single-node-${config.baseNodeConfig.nodeConfiguration}-${config.baseNodeConfig.bscNetwork}`, | ||
|
||
env: { account: config.baseConfig.accountId, region: config.baseConfig.region }, | ||
nodeRole: <configTypes.BscNodeRole> "single-node", | ||
instanceType: config.baseNodeConfig.instanceType, | ||
instanceCpuType: config.baseNodeConfig.instanceCpuType, | ||
bscNetwork: config.baseNodeConfig.bscNetwork, | ||
nodeConfiguration: config.baseNodeConfig.nodeConfiguration, | ||
snapshotsUrl:config.baseNodeConfig.snapshotsUrl, | ||
dataVolume: config.baseNodeConfig.dataVolume, | ||
}); | ||
|
||
new BscHANodesStack(app, "bsc-ha-nodes", { | ||
stackName: `bsc-ha-nodes-${config.baseNodeConfig.nodeConfiguration}-${config.baseNodeConfig.bscNetwork}`, | ||
env: { account: config.baseConfig.accountId, region: config.baseConfig.region }, | ||
nodeRole: <configTypes.BscNodeRole> "rpc-node", | ||
instanceType: config.baseNodeConfig.instanceType, | ||
instanceCpuType: config.baseNodeConfig.instanceCpuType, | ||
bscNetwork: config.baseNodeConfig.bscNetwork, | ||
nodeConfiguration: config.baseNodeConfig.nodeConfiguration, | ||
snapshotsUrl:config.baseNodeConfig.snapshotsUrl, | ||
dataVolume: config.baseNodeConfig.dataVolume, | ||
|
||
albHealthCheckGracePeriodMin: config.haNodeConfig.albHealthCheckGracePeriodMin, | ||
heartBeatDelayMin: config.haNodeConfig.heartBeatDelayMin, | ||
numberOfNodes: config.haNodeConfig.numberOfNodes | ||
}); | ||
|
||
// Security Check | ||
cdk.Aspects.of(app).add( | ||
new nag.AwsSolutionsChecks({ | ||
verbose: false, | ||
reports: true, | ||
logIgnores: false | ||
}) | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ | ||
"app": "npx ts-node --prefer-ts-exts app.ts", | ||
"watch": { | ||
"include": [ | ||
"**" | ||
], | ||
"exclude": [ | ||
"README.md", | ||
"cdk*.json", | ||
"**/*.d.ts", | ||
"**/*.js", | ||
"tsconfig.json", | ||
"package*.json", | ||
"yarn.lock", | ||
"node_modules", | ||
"test" | ||
] | ||
}, | ||
"context": { | ||
"@aws-cdk/aws-lambda:recognizeLayerVersion": true, | ||
"@aws-cdk/core:checkSecretUsage": true, | ||
"@aws-cdk/core:target-partitions": [ | ||
"aws", | ||
"aws-cn" | ||
], | ||
"@aws-cdk-containers/ecs-service-extensions:enableDefaultLogDriver": true, | ||
"@aws-cdk/aws-ec2:uniqueImdsv2TemplateName": true, | ||
"@aws-cdk/aws-ecs:arnFormatIncludesClusterName": true, | ||
"@aws-cdk/aws-iam:minimizePolicies": true, | ||
"@aws-cdk/core:validateSnapshotRemovalPolicy": true, | ||
"@aws-cdk/aws-codepipeline:crossAccountKeyAliasStackSafeResourceName": true, | ||
"@aws-cdk/aws-s3:createDefaultLoggingPolicy": true, | ||
"@aws-cdk/aws-sns-subscriptions:restrictSqsDescryption": true, | ||
"@aws-cdk/aws-apigateway:disableCloudWatchRole": true, | ||
"@aws-cdk/core:enablePartitionLiterals": true, | ||
"@aws-cdk/aws-events:eventsTargetQueueSameAccount": true, | ||
"@aws-cdk/aws-iam:standardizedServicePrincipals": true, | ||
"@aws-cdk/aws-ecs:disableExplicitDeploymentControllerForCircuitBreaker": true, | ||
"@aws-cdk/aws-iam:importedRoleStackSafeDefaultPolicyName": true, | ||
"@aws-cdk/aws-s3:serverAccessLogsUseBucketPolicy": true, | ||
"@aws-cdk/aws-route53-patters:useCertificate": true, | ||
"@aws-cdk/customresources:installLatestAwsSdkDefault": false, | ||
"@aws-cdk/aws-rds:databaseProxyUniqueResourceName": true, | ||
"@aws-cdk/aws-codedeploy:removeAlarmsFromDeploymentGroup": true, | ||
"@aws-cdk/aws-apigateway:authorizerChangeDeploymentLogicalId": true, | ||
"@aws-cdk/aws-ec2:launchTemplateDefaultUserData": true, | ||
"@aws-cdk/aws-secretsmanager:useAttachedSecretResourcePolicyForSecretTargetAttachments": true, | ||
"@aws-cdk/aws-redshift:columnId": true, | ||
"@aws-cdk/aws-stepfunctions-tasks:enableEmrServicePolicyV2": true, | ||
"@aws-cdk/aws-ec2:restrictDefaultSecurityGroup": true, | ||
"@aws-cdk/aws-apigateway:requestValidatorUniqueId": true, | ||
"@aws-cdk/aws-kms:aliasNameRef": true, | ||
"@aws-cdk/aws-autoscaling:generateLaunchTemplateInsteadOfLaunchConfig": true, | ||
"@aws-cdk/core:includePrefixInUniqueNameGeneration": true, | ||
"@aws-cdk/aws-opensearchservice:enableOpensearchMultiAzWithStandby": true | ||
} | ||
} |
Oops, something went wrong.