@gradientedge/cdk-utils 4.13.0 → 4.13.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -95,7 +95,7 @@ class GraphQLApiLambdaWithCache extends __1.GraphQLApiLambda {
|
|
|
95
95
|
securityGroupName: `${this.id}-security-group-${this.props.stage}`,
|
|
96
96
|
vpc: this.graphQLVpc,
|
|
97
97
|
});
|
|
98
|
-
this.graphQLSecurityGroup.addIngressRule(ec2.Peer.anyIpv4(), ec2.Port.
|
|
98
|
+
this.graphQLSecurityGroup.addIngressRule(ec2.Peer.anyIpv4(), ec2.Port.allTraffic(), 'All Traffic');
|
|
99
99
|
utils.createCfnOutput(`${this.id}-security-group-id`, this, this.graphQLSecurityGroup.securityGroupId);
|
|
100
100
|
}
|
|
101
101
|
}
|
package/package.json
CHANGED
|
@@ -82,7 +82,7 @@ export class GraphQLApiLambdaWithCache extends GraphQLApiLambda {
|
|
|
82
82
|
vpc: this.graphQLVpc,
|
|
83
83
|
})
|
|
84
84
|
|
|
85
|
-
this.graphQLSecurityGroup.addIngressRule(ec2.Peer.anyIpv4(), ec2.Port.
|
|
85
|
+
this.graphQLSecurityGroup.addIngressRule(ec2.Peer.anyIpv4(), ec2.Port.allTraffic(), 'All Traffic')
|
|
86
86
|
|
|
87
87
|
utils.createCfnOutput(`${this.id}-security-group-id`, this, this.graphQLSecurityGroup.securityGroupId)
|
|
88
88
|
}
|