rights reserved. In Partnership with cdk init cdk init app --language=typescript aws-cdk-bestpractice bin/aws-cdk-bestpractice.ts const app = new cdk.App(); new AwsCdkBestpracticeStack(app, 'AwsCdkBestpracticeStack’);
rights reserved. In Partnership with id - +α const patterns = new ecsPatterns.ApplicationLoadBalancedFargateService(this, “Service”, { ... taskImageOptions: { environment: { ‘IAC_CORE_SECTION’: id.rank.section, // dev or prod }, }, }); https://github.com/hixi-hyi/aws-cdk-identifier
rights reserved. In Partnership with bin/infra.ts id = cdkid.Identifier({ section: resolveEnvironmentFromAwsAccountId() }); const common = new stack.ProductCommon(app, id); new stack.ProductServiceApi(app, id.child({cohort: “service”, family: 'api'}), { common });