Skip to content

Commit

Permalink
fix(config): the IGW mapping to correct resource type (aws#16464)
Browse files Browse the repository at this point in the history
fixes: aws#16463 

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
Pandafriendd authored Sep 14, 2021
1 parent 9bbfd18 commit 23d9b6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-config/lib/rule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1355,7 +1355,7 @@ export class ResourceType {
/** Amazon EC2 customer gateway */
public static readonly EC2_CUSTOMER_GATEWAY = new ResourceType('AWS::EC2::CustomerGateway');
/** Amazon EC2 internet gateway */
public static readonly EC2_INTERNET_GATEWAY = new ResourceType('AWS::EC2::CustomerGateway');
public static readonly EC2_INTERNET_GATEWAY = new ResourceType('AWS::EC2::InternetGateway');
/** Amazon EC2 network ACL */
public static readonly EC2_NETWORK_ACL = new ResourceType('AWS::EC2::NetworkAcl');
/** Amazon EC2 route table */
Expand Down

0 comments on commit 23d9b6a

Please sign in to comment.