Skip to content

Commit a1cc092

Browse files
feat: add AWS/VpcLattice as supported service (#1506)
Co-authored-by: Cristian Greco <[email protected]>
1 parent eee6dda commit a1cc092

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ Only the latest version gets security updates. We won't support older versions.
132132
* `ECS/ContainerInsights` - ECS/ContainerInsights (Fargate metrics)
133133
* `Glue` - AWS Glue Jobs
134134
* `ContainerInsights` - EKS ContainerInsights (Dependency on Cloudwatch agent)
135+
* `AWS/VpcLattice` - VPC Lattice
135136

136137
## Feature flags
137138

pkg/config/services.go

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -986,4 +986,14 @@ var SupportedServices = serviceConfigs{
986986
regexp.MustCompile(":rule/aws.partner/(?P<EventBusName>.+)/(?P<RuleName>[^/]+)$"),
987987
},
988988
},
989+
{
990+
Namespace: "AWS/VpcLattice",
991+
Alias: "vpc-lattice",
992+
ResourceFilters: []*string{
993+
aws.String("vpc-lattice:service"),
994+
},
995+
DimensionRegexps: []*regexp.Regexp{
996+
regexp.MustCompile(":service/(?P<Service>[^/]+)$"),
997+
},
998+
},
989999
}

0 commit comments

Comments
 (0)