-
Notifications
You must be signed in to change notification settings - Fork 123
/
zz_configservice_setup.go
executable file
·38 lines (33 loc) · 1.52 KB
/
zz_configservice_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
// 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"
awsconfigurationrecorderstatus "github.com/upbound/provider-aws/internal/controller/configservice/awsconfigurationrecorderstatus"
configrule "github.com/upbound/provider-aws/internal/controller/configservice/configrule"
configurationaggregator "github.com/upbound/provider-aws/internal/controller/configservice/configurationaggregator"
configurationrecorder "github.com/upbound/provider-aws/internal/controller/configservice/configurationrecorder"
conformancepack "github.com/upbound/provider-aws/internal/controller/configservice/conformancepack"
deliverychannel "github.com/upbound/provider-aws/internal/controller/configservice/deliverychannel"
remediationconfiguration "github.com/upbound/provider-aws/internal/controller/configservice/remediationconfiguration"
)
// Setup_configservice creates all controllers with the supplied logger and adds them to
// the supplied manager.
func Setup_configservice(mgr ctrl.Manager, o controller.Options) error {
for _, setup := range []func(ctrl.Manager, controller.Options) error{
awsconfigurationrecorderstatus.Setup,
configrule.Setup,
configurationaggregator.Setup,
configurationrecorder.Setup,
conformancepack.Setup,
deliverychannel.Setup,
remediationconfiguration.Setup,
} {
if err := setup(mgr, o); err != nil {
return err
}
}
return nil
}