diff --git a/README.md b/README.md index a27ddb28..748c6e4c 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/pkg/config/services.go b/pkg/config/services.go index 0d514118..474f0be5 100644 --- a/pkg/config/services.go +++ b/pkg/config/services.go @@ -986,4 +986,14 @@ var SupportedServices = serviceConfigs{ regexp.MustCompile(":rule/aws.partner/(?P.+)/(?P[^/]+)$"), }, }, + { + Namespace: "AWS/VpcLattice", + Alias: "vpc-lattice", + ResourceFilters: []*string{ + aws.String("vpc-lattice:service"), + }, + DimensionRegexps: []*regexp.Regexp{ + regexp.MustCompile(":service/(?P[^/]+)$"), + }, + }, }