Skip to content

Commit

Permalink
fix(stacks.api/data): remove unused prop
Browse files Browse the repository at this point in the history
Signed-off-by: Braden Mars <bradenmars@bradenmars.me>
  • Loading branch information
BradenM committed Sep 20, 2023
1 parent ae3fa15 commit 9b9ea2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/stacks/api/src/stacks/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ export class DatabaseBastion extends Construct {
constructor(scope: Construct, id: string, props: DatabaseBastionProps) {
super(scope, id)

const { database, vpc, encryptionKey, allowCidrs, hostedZone } = props
const { database, vpc, encryptionKey, allowCidrs } = props

this.securityGroup = new ec2.SecurityGroup(this, id + '-security-group', {
vpc,
Expand Down

0 comments on commit 9b9ea2a

Please sign in to comment.