Skip to content
Merged
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
3 changes: 2 additions & 1 deletion cdk-resources/bin/cdk-resources-1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ import * as cdk from '@aws-cdk/core';
import { CdkResources1Stack } from '../lib/cdk-resources-1-stack';

const app = new cdk.App();
new CdkResources1Stack(app, 'CdkResources1Stack');
const cdkResources1Stack = new CdkResources1Stack(app, 'CdkResources1Stack');
cdk.Tags.of(cdkResources1Stack).add('aws-apn-id', 'pc:9yq38ki5jw5mas7jhjthpgveo');
3 changes: 2 additions & 1 deletion lambda-php-bref-cdk-app/bin/php-bref-cdk-app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import * as cdk from 'aws-cdk-lib';
import { PhpBrefStack } from '../lib/php-bref-stack';

const app = new cdk.App();
new PhpBrefStack(app, 'CdkBrefStack', {
const cdkBrefStack = new PhpBrefStack(app, 'CdkBrefStack', {
/* If you don't specify 'env', this stack will be environment-agnostic.
* Account/Region-dependent features and context lookups will not work,
* but a single synthesized template can be deployed anywhere. */
Expand All @@ -19,3 +19,4 @@ new PhpBrefStack(app, 'CdkBrefStack', {

/* For more information, see https://docs.aws.amazon.com/cdk/latest/guide/environments.html */
});
cdk.Tags.of(cdkBrefStack).add('aws-apn-id', 'pc:9yq38ki5jw5mas7jhjthpgveo');
Loading