Skip to content

Commit

Permalink
chore(ec2): add VPC interface endpoints for WAFV2 (#33685)
Browse files Browse the repository at this point in the history
### Issue # (if applicable)

### Reason for this change

There are no VPC endpoints for AWS WAFV2 so I added.
```
% aws ec2 describe-vpc-endpoint-services --filters "Name=service-name,Values=*waf*" --region us-east-1 --query "ServiceNames[]" 
[
    "com.amazonaws.us-east-1.wafv2",
    "com.amazonaws.us-east-1.wafv2-fips"
]
```

### Description of changes



### Describe any new or updated permissions being added




### Description of how you validated changes



### Checklist
- [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md)

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
yendoooo authored Mar 7, 2025
1 parent 7213a2f commit 5eb11d2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/aws-cdk-lib/aws-ec2/lib/vpc-endpoint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -639,6 +639,8 @@ export class InterfaceVpcEndpointAwsService implements IInterfaceVpcEndpointServ
public static readonly TRANSFER_SERVER = new InterfaceVpcEndpointAwsService('transfer.server');
public static readonly TRANSLATE = new InterfaceVpcEndpointAwsService('translate');
public static readonly TRUSTED_ADVISOR = new InterfaceVpcEndpointAwsService('trustedadvisor');
public static readonly WAFV2 = new InterfaceVpcEndpointAwsService('wafv2');
public static readonly WAFV2_FIPS = new InterfaceVpcEndpointAwsService('wafv2-fips');
public static readonly WELL_ARCHITECTED_TOOL = new InterfaceVpcEndpointAwsService('wellarchitected');
public static readonly WORKMAIL = new InterfaceVpcEndpointAwsService('workmail');
public static readonly WORKSPACES = new InterfaceVpcEndpointAwsService('workspaces');
Expand Down

0 comments on commit 5eb11d2

Please # to comment.