Skip to content

Commit

Permalink
adding stack description
Browse files Browse the repository at this point in the history
  • Loading branch information
galinsky committed Sep 29, 2024
1 parent 3edd07f commit 6b0c195
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/aws-ocpp-gateway-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@ interface AwsOcppGatewayStackProps extends cdk.StackProps {

export class AwsOcppGatewayStack extends cdk.Stack {
constructor(scope: Construct, id: string, props?: AwsOcppGatewayStackProps) {
super(scope, id, props);
super(scope, id, {
...props,
description:
'SO9522: This stack deploys resources for OCPP Gateway application.',
});

const vpcCidr = '10.0.0.0/16';
const tcpPort = 8080;
Expand Down

0 comments on commit 6b0c195

Please sign in to comment.