Skip to content

Commit

Permalink
Fix regex for vpc-endpoint-service (#1120)
Browse files Browse the repository at this point in the history
  • Loading branch information
cristiangreco authored Aug 23, 2023
1 parent 3525d64 commit 2b3efe9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/config/services.go
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ var SupportedServices = serviceConfigs{
aws.String("ec2:vpc-endpoint-service"),
},
DimensionRegexps: []*regexp.Regexp{
regexp.MustCompile(":vpc-endpoint-service:(?P<Service_Id>.+)"),
regexp.MustCompile(":vpc-endpoint-service/(?P<Service_Id>.+)"),
},
},
{
Expand Down

0 comments on commit 2b3efe9

Please sign in to comment.