Skip to content

Commit

Permalink
Merge pull request #136 from galinsky/main
Browse files Browse the repository at this point in the history
adding stack description
  • Loading branch information
galinsky authored Oct 3, 2024
2 parents 3edd07f + 6b0c195 commit 0e3dc31
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 0e3dc31

Please sign in to comment.