diff --git a/README.md b/README.md index b5d97dfd9..3b308703c 100644 --- a/README.md +++ b/README.md @@ -58,6 +58,7 @@ Only the latest version gets security updates. We won't support older versions. * `AWS/ApplicationELB` - Application Load Balancer * `AWS/AppRunner` - Managed Container Apps Service * `AWS/AppStream` - AppStream + * `AWS/AppFlow` - AppFlow * `AWS/AppSync` - AppSync * `AWS/Athena` - Athena * `AWS/AutoScaling` - Auto Scaling Group diff --git a/pkg/config/services.go b/pkg/config/services.go index 3b5d14c30..c80140b99 100644 --- a/pkg/config/services.go +++ b/pkg/config/services.go @@ -131,6 +131,16 @@ var SupportedServices = serviceConfigs{ regexp.MustCompile(":loadbalancer/(?P.+)$"), }, }, + { + Namespace: "AWS/AppFlow", + Alias: "appflow", + ResourceFilters: []*string{ + aws.String("appflow:flow"), + }, + DimensionRegexps: []*regexp.Regexp{ + regexp.MustCompile(":flow/(?P[^/]+)"), + }, + }, { Namespace: "AWS/AppStream", Alias: "appstream",