-
Notifications
You must be signed in to change notification settings - Fork 123
/
zz_securityhub_setup.go
executable file
·40 lines (35 loc) · 1.48 KB
/
zz_securityhub_setup.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// SPDX-FileCopyrightText: 2024 The Crossplane Authors <https://crossplane.io>
//
// SPDX-License-Identifier: Apache-2.0
package controller
import (
ctrl "sigs.k8s.io/controller-runtime"
"github.com/crossplane/upjet/pkg/controller"
account "github.com/upbound/provider-aws/internal/controller/securityhub/account"
actiontarget "github.com/upbound/provider-aws/internal/controller/securityhub/actiontarget"
findingaggregator "github.com/upbound/provider-aws/internal/controller/securityhub/findingaggregator"
insight "github.com/upbound/provider-aws/internal/controller/securityhub/insight"
inviteaccepter "github.com/upbound/provider-aws/internal/controller/securityhub/inviteaccepter"
member "github.com/upbound/provider-aws/internal/controller/securityhub/member"
productsubscription "github.com/upbound/provider-aws/internal/controller/securityhub/productsubscription"
standardssubscription "github.com/upbound/provider-aws/internal/controller/securityhub/standardssubscription"
)
// Setup_securityhub creates all controllers with the supplied logger and adds them to
// the supplied manager.
func Setup_securityhub(mgr ctrl.Manager, o controller.Options) error {
for _, setup := range []func(ctrl.Manager, controller.Options) error{
account.Setup,
actiontarget.Setup,
findingaggregator.Setup,
insight.Setup,
inviteaccepter.Setup,
member.Setup,
productsubscription.Setup,
standardssubscription.Setup,
} {
if err := setup(mgr, o); err != nil {
return err
}
}
return nil
}