Skip to content

Commit

Permalink
feat: add AWS/VpcLattice as supported service (#1506)
Browse files Browse the repository at this point in the history
Co-authored-by: Cristian Greco <[email protected]>
  • Loading branch information
greymd and cristiangreco authored Aug 30, 2024
1 parent eee6dda commit a1cc092
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ Only the latest version gets security updates. We won't support older versions.
* `ECS/ContainerInsights` - ECS/ContainerInsights (Fargate metrics)
* `Glue` - AWS Glue Jobs
* `ContainerInsights` - EKS ContainerInsights (Dependency on Cloudwatch agent)
* `AWS/VpcLattice` - VPC Lattice

## Feature flags

Expand Down
10 changes: 10 additions & 0 deletions pkg/config/services.go
Original file line number Diff line number Diff line change
Expand Up @@ -986,4 +986,14 @@ var SupportedServices = serviceConfigs{
regexp.MustCompile(":rule/aws.partner/(?P<EventBusName>.+)/(?P<RuleName>[^/]+)$"),
},
},
{
Namespace: "AWS/VpcLattice",
Alias: "vpc-lattice",
ResourceFilters: []*string{
aws.String("vpc-lattice:service"),
},
DimensionRegexps: []*regexp.Regexp{
regexp.MustCompile(":service/(?P<Service>[^/]+)$"),
},
},
}

0 comments on commit a1cc092

Please sign in to comment.