Commit 06e6b25
authored
feat(ec2): add Interface VPC Endpoints for ACM and ACM-PCA (#35890)
### Issue # (if applicable)
None
### Reason for this change
AWS supports Interface VPC Endpoints for ACM and ACM-PCA.
However, AWS CDK currently includes only acm-pca.
This change adds missing support for the remaining endpoints: acm, acm-fips, and acm-pca-fips.
### Description of changes
Added the following interface VPC endpoints to `InterfaceVpcEndpointAwsService`
- `acm`
- `acm-fips`
- `acm-pca-fips`
### Describe any new or updated permissions being added
None
### Description of how you validated changes
Validated by executing the AWS CLI command
```bash
$ aws ec2 describe-vpc-endpoint-services --filters "Name=service-name,Values=*acm*" --region us-east-1 --query "ServiceNames[]"
[
"com.amazonaws.us-east-1.acm",
"com.amazonaws.us-east-1.acm-fips",
"com.amazonaws.us-east-1.acm-pca",
"com.amazonaws.us-east-1.acm-pca-fips"
]
```
`acm-pca` was already supported prior to this change.
### 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*1 parent 0da756d commit 06e6b25
1 file changed
+3
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
417 | 417 | | |
418 | 418 | | |
419 | 419 | | |
| 420 | + | |
| 421 | + | |
420 | 422 | | |
421 | 423 | | |
422 | 424 | | |
| |||
663 | 665 | | |
664 | 666 | | |
665 | 667 | | |
| 668 | + | |
666 | 669 | | |
667 | 670 | | |
668 | 671 | | |
| |||
0 commit comments