Skip to content

Commit

Permalink
add tags as properties
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesKonings committed Apr 20, 2024
1 parent a8af3e1 commit 66874c0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ const app = new App();
const branchName = process.env.BRANCH_NAME || 'dev';
console.log(`Deploying with stack postfix ${branchName}`);

new CdkNotfifierFeatureStackExample(app, `cdk-notifier-feature-stacks-${branchName}`);
new CdkNotfifierFeatureStackExample(app, `cdk-notifier-feature-stacks-${branchName}`, {
tags: {
branch: branchName,
},
});

app.synth();

0 comments on commit 66874c0

Please sign in to comment.