From 173435f78c8ee07e24585897c9d351aa18dc8d1c Mon Sep 17 00:00:00 2001 From: Alex Stone Date: Sat, 25 Jun 2022 00:02:10 -0500 Subject: [PATCH] Fix typo --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 25ffb0d..6d7cf9a 100644 --- a/src/index.ts +++ b/src/index.ts @@ -228,7 +228,7 @@ export class DatabaseCluster extends Construct { this.masterPassword = masterUserSecret; - const dbConnectionGroup = new ec2.SecurityGroup(this, 'DB Secuirty Group', { + const dbConnectionGroup = new ec2.SecurityGroup(this, 'DB Security Group', { vpc: props.vpc, }); dbConnectionGroup.connections.allowInternally(ec2.Port.tcp(3306));